Can i grab nth character(s) after a pattern match in variable

0
how to capture a particular text from a string. for example :  test123=456 ( this is a variable and anything before equal and after equal keeps changing,) so i want to capture anything after the = sign
asked
1 answers
1

https://docs.mendix.com/refguide/string-function-calls

You can use the find function te get the position of the =sign and the use substring to get the before and after piece

answered