Split a string in words.
Source position: strutils.pp line 93
function SplitString( |
const S: string; |
const Delimiters: string |
SplitString will split the string (S) using the characters in Delimiters as separator characters. The result contains all words separated by one of the characters in Delimiters.
This function is a simplified wrapper around TStringHelper.Split.
TStringHelper.Split |