From Clomosy Docs

No edit summary
No edit summary
Line 4: Line 4:


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


'''Output:'''
'''Output:'''

Revision as of 13:53, 7 February 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:

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


Output:

CC

See Also