Regex
Methods for regex strings.
Note: Backslashes \ in regex strings do not need to be escaped.
// Regex literal string
$pattern = rx'\d+ \w+'i
// Creating a Regex from a dynamic string
$pattern = Regex('\\d+ \\w+', 'i')
Methods for regex strings.
Note: Backslashes \ in regex strings do not need to be escaped.
// Regex literal string
$pattern = rx'\d+ \w+'i
// Creating a Regex from a dynamic string
$pattern = Regex('\\d+ \\w+', 'i')