SubstringRegexpDelimiter
Returns substring starting and ending by the specified regular expression delimiters
SubstringRegexpDelimiter("your text is here now", "[tex]", "here") → "text is here"
SubstringRegexpDelimiter("COMMAND DELETE", "[AND]", "[L]") → "AND DEL"
Inputs
SubstringRegexpDelimiter(string, startAfterRegexp, endBeforeRegexp, [index])
string
- A text valuestartAfterRegexp
- Regular expression to start the search afterendBeforeRegexp
- Regular expression to end the search before[index]
- [optional:0
by default**]**
Last updated
Was this helpful?