I am trying to validate a phone number using NSPredicate
and regex. The only problem is when setting the regex Swift thinks that I am trying to escape part of it due to the backslashes. How can I get around this?
My code is as follows:
let phoneRegEx = "^((\(?0\d{4}\)?\s?\d{3}\s?\d{3})|(\(?0\d{3}\)?\s?\d{3}\s?\d{4})|(\(?0\d{2}\)?\s?\d{4}\s?\d{4}))(\s?\#(\d{4}|\d{3}))?$"
Swift – Double Quotes inside String To include quotes inside a string in Swift, escape the quote symbol with backslash character, i.e., place a backslash character before the double quote inside the string.
The The Swift Programming Language / Strings and Characters states: Because multiline string literals use three double quotation marks instead of just one, you can include a double quotation mark ( " ) inside of a multiline string literal without escaping it. let string = """ A string with "double quotes" in it.
Swift's escape character is \ , the backslash (U+005C). Escape character sequences (shortened to escape sequence) represent special characters. In the current version of Swift, the backslash escape character tells the compiler that a sequence should combine to produce one of these special characters.
In Swift regular string literals, you need to double-escape the slashes to define literal backslashes:
let phoneRegEx = "^((\\(?0\\d{4}\\)?\\s?\\d{3}\\s?\\d{3})|(\\(?0\\d{3}\\)?\\s?\\d{3}\\s?\\d{4})|(\\(?0\\d{2}\\)?\\s?\\d{4}\\s?\\d{4}))(\\s?#(\\d{4}|\\d{3}))?$"
Starting from Swift 5, you can use raw string literals and escape regex escapes with a single backslash:
let phoneRegEx = #"^((\(?0\d{4}\)?\s?\d{3}\s?\d{3})|(\(?0\d{3}\)?\s?\d{3}\s?\d{4})|(\(?0\d{2}\)?\s?\d{4}\s?\d{4}))(\s?#(\d{4}|\d{3}))?$"#
Please refer to the Regular Expression Metacharacters table on the ICU Regular Expressions page to see what regex escapes should be escaped this way.
Please mind the difference between the regex escapes (in the above table) and string literal escape sequences used in the regular string literals that you may check, say, at Special Characters in String Literals:
String literals can include the following special characters:
- The escaped special characters
\0
(null character),\\
(backslash),\t
(horizontal tab),\n
(line feed),\r
(carriage return),\"
(double quotation mark) and\'
(single quotation mark)- An arbitrary Unicode scalar value, written as
\u{n}
, wheren
is a 1–8 digit hexadecimal number (Unicode is discussed in Unicode below)
So, in regular string literals, "\""
is a "
string written as a string literal, and you do not have to escape a double quotation mark for the regex engine, so "\""
string literal regex pattern is enough to match a "
char in a string. However, "\\\""
, a string literal repesenting \"
literal string will also match "
char, although you can already see how redundant this regex pattern is. Also, "\n"
(an LF symbol) matches a newline in the same way as "\\n"
does, as "\n"
is a literal representation of the newline char and "\\n"
is a regex escape defined in the ICU regex escape table.
In raw string literals, \
is just a literal backslash.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With