| Class | Description |
|---|---|
| FindFunctionExtension |
find(regex, inputSequence)
find(regex, inputSequence, startingIndex)
These methods attempts to find the next sub-sequence of the 'inputSequence' that matches the 'regex' pattern.
|
| GroupFunctionExtension |
group(regex, inputSequence, groupId)
This method returns the input sub-sequence captured by the given group during the previous match operation.
|
| LookingAtFunctionExtension |
lookingAt(regex, inputSequence)
This method attempts to match the 'inputSequence', starting at the beginning, against the 'regex' pattern.
|
| MatchesFunctionExtension |
matches(regex, inputSequence)
This method attempts to match the entire 'inputSequence' against the 'regex' pattern.
|
Copyright © 2019 WSO2. All Rights Reserved.