Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Extracts Finds the first pattern match from in a string.

Code Block
Result = SRP_Regex("Search", String, Pattern)

...

The Search service looks for a match within a string. If found, it returns the following @FM delimited structure:

PosNameDescription
<1>
StringThe actual substring matching the pattern.
<2>
PosThe starting position of the match within the original string.
<3>
LengthThe length of the match.
<4>
CapturesAn @VM delimited list of captured groups. (You can learn more about capturing groups here.)

...