BinToNumber
|
Converts a string containing 1 and 0 representing a number in binary, to a Concept static number
|
Ext
|
Extracts the extension from a given filename
|
HexToNumber
|
Converts a string containing a hexadecimal number to a Concept static number
|
NumberToBin
|
Converts a number to a string representing the binary representation
|
NumberToHex
|
Converts a number to a string representing the hexadecimal representation
|
NumberToOct
|
Converts a number to a string representing the octal representation
|
OctToNumber
|
Converts a string containing an octal number to a Concept static number
|
Pos
|
Searches a string for a sub string using the Boyer-Moore algorithm
|
RepeatString
|
Repeats the fill_string a number of given times
|
StrNumberSplit
|
Splits a string into other strings and converts those to number
|
StrReplace
|
Replaces every replace_source in String_to_look with the replace_with
|
StrSplit
|
Splits a string into other strings
|
String
|
Used when some string is returned by a non-Concept and non-C/C++ library that does not use null-terminated strings
|
SubStr
|
Returns a sub string from the given string(str)
|
ToHTML
|
Converts a string to a HTML compatible string (replacing all the <, > and & with the HTML codes)
|
ToLower
|
Creates a new string from the given one, in lowercase
|
ToUpper
|
Creates a new string from the given one, in uppercase
|
chr
|
Returns the character corresponding to a given ASCII value
|
ltrim
|
Left trims a string
|
ord
|
Returns the ASCII code corresponding to a character
|
rtrim
|
Right trims a string
|
trim
|
Trims a string
|