ballerina/regex1.0.1
Overview
This module provides APIs for searching, splitting, and replacing the set of characters of a string. These APIs are using a
regular expression as a String
to perform these operations by finding the string matches.
Regular expressions, are notations for describing sets of character strings. If a particular string is in the set described by a regular expression, the regular expression matches that string.
For information on the operations, which you can perform with the regex module, see the below Functions.
Functions
[4]
matches | Checks whether the given string matches the provided |
replaceAll | Replaces each occurrence of the substrings, which match the provided
|
replaceFirst | Replaces the first substring that matches the given |
split | Returns an array of strings by splitting a string using the provided delimiter. |