ExcludeFirstWord

STD.Str.ExcludeFirstWord( text )

STD.Uni.ExcludeFirstWord( text, localename )

textA string containing words separated by whitespace.
localenameOptional. The locale to use for the break semantics. Defaults to ''
Return:ExcludeFirstWord returns a STRING or UNICODE value, as appropriate.

The ExcludeFirstWord function returns the text string with the first word removed.

Words are separated by one or more whitespace characters. For the Unicode version, words are marked by the Unicode break semantics.

Whitespace before the first word is also removed.

Example:

A := STD.Str.ExcludeFirstWord('The quick brown fox');
 //A contains 'quick brown fox'