Function::String
StringBetween
StringBetween("MyString","FromString","ToString")
StringBetween("My HTML
This is a test
","
","
") - returning This is a test
retval := StringBetween(MyTextField,"[{Name}]","[{/Name}]")

Will search through a string and return the text between two search strings not inclusive i.e

Parameters

SearchString: Text

The source string that you are searching.

StartTag: Text

The tag that indicate the start of the text you are searching for.

EndTag: Text

The tag that indicates the end of the text you are searching for. If Endtag is not found, the function will return the remainder of the string.

Returns/Result

Text (255): The string between the search values, or the remainder of the text if Endtag is not found.