From Clomosy Docs
No edit summary |
ClomosyAdmin (talk | contribs) No edit summary |
||
| Line 25: | Line 25: | ||
<h2> See Also </h2> | <h2> See Also </h2> | ||
* [[System_Library#Cl_Utilities_Functions | Cl Utilities Functions]] | * [[System_Library#Explore ClGetStringAfter on Clomosy. Learn how to use the clGetStringAfter function to extract text after specific characters in your projects. | ||
Cl_Utilities_Functions | Cl Utilities Functions]] | |||
{{#seo:|description=}} | |||
Revision as of 07:06, 24 December 2024
function clGetStringAfter(mainText,ConditionText:String):String;
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:
Updated Text: CC
See Also
- [[System_Library#Explore ClGetStringAfter on Clomosy. Learn how to use the clGetStringAfter function to extract text after specific characters in your projects.
Cl_Utilities_Functions | Cl Utilities Functions]]