From Clomosy Docs

Revision as of 13:52, 15 May 2025 by ClomosyManager (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

In Clomosy, you can use the clGetStringAfter function to retrieve text that comes after a character or characters in the text. The basic usage of the clGetStringAfter function is as follows:

Example

var
 mainText,ConditionText,updatedText : String;

{
 mainText = 'AAbBCC';
 ConditionText = 'bB';
 updatedText = clGetStringAfter(mainText,ConditionText);
 ShowMessage('Updated Text: '+ updatedText);
}

Output:

See Also