From Clomosy Docs

(Created page with "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: clGetStringAfter(mainText, ConditionText'): String '''Example:''' begin ShowMessage(clGetStringAfter('AAbBCC','bB')); end; '''Output:''' CC")
 
No edit summary
Line 10: Line 10:
'''Output:'''
'''Output:'''
  CC
  CC
= See Also =
* [[Controls| Controls]]

Revision as of 06:32, 24 January 2024

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:

clGetStringAfter(mainText, ConditionText'): String

Example:

begin
  ShowMessage(clGetStringAfter('AAbBCC','bB'));
end;

Output:

CC

See Also