Prehľad
Nástroje obsahu
TEXT %GetStrItem( TEXT in string, INT in seq_number, TEXT in delimiter, BOOL in bTrim := @TRUE )
string | Text string. |
seq_number | The sequence number of the word. |
delimiter | Delimiter. |
bTrim | @TRUE - The returned word will be trimmed. @FALSE - The returned word will not be trimmed. |
%GetStrItem("John;Michael;Charles;Jack;Martin",3,";") ; the function returns the value of "Charles" %GetStrItem("John;Michael; Charles ;Jack;Martin",3,";") ; the function returns the value of "Charles" %GetStrItem("John;Michael; Charles ;Jack;Martin",3,";", @FALSE) ; the function returns the value of " Charles "
Pridať komentár