From Clomosy Docs

Revision as of 14:25, 13 September 2023 by ClomosyManager (talk | contribs) (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")
(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:

clGetStringAfter(mainText, ConditionText'): String

Example:

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

Output:

CC