tags:

views:

1935

answers:

2

Hi guys, I want to know what's the meaning of tilde operator in regular expressions.

I have this statement:

if (!preg_match('~^\d{10}$~', $_POST['isbn'])) {
    $warnings[] = 'ISBN should be 10 digits';
}

I found this document explaining what tilde means: ~

It said that =~ is a perl operator that means run this variable against this regular expression.

But why does my regular expression contains two tilde operators?

+8  A: 

In this case, it's just being used as a delimiter.

Generally, in PHP, the first and last characters of a regular expression are "delimiters" to mark the start and ending position of a matching proportion (in case you want to add modifiers at the end, like ungreedy, etc)

Generally PHP works this out from the first character in a string that is meant as a regular expression, matching the second occurence of it as the second delimiter. This is useful, for example, where you have an occurrence of the normal delimiter in the text (for example, occurences of / in the text) - this means you don't have to do awkward things.

Matching for "//" with the delimeter set to "/"

/\/\//

Matching for "//" with the delimiter of "#"

#//#

Mez
ic, I'm used to the / delimiter so I was a little confused with the ~ delimiter. Thanks for clarifying.
Keira Nighly
This does only apply to PCRE http://docs.php.net/manual/en/book.pcre.php and not POSIX ERE http://docs.php.net/manual/en/book.regex.php
Gumbo
+2  A: 

In this case, it doesn't mean anything. It is simply delimiting the start and end of your pattern. In PCRE (Perl Compatible Regular Expressions), which is what you're using with preg_* in PHP, the pattern is input along side the expression options, like so:

preg_match("/pattern/opt", ...);

However, the use of "/" as the delimiter in this case is arbitrary - although forward slash is popular, it can be replaced with anything. In your case, it's tilde.

Nick
Oh, Ok.. I got the regular expression from the book.. They didn't explain what it meant. So was confused a little. I was just trying to clarify things because I'm confused. Thanks!
Keira Nighly
'/' is popular because it's the standard delimiter for perl regular expressions, which is what preg stands for ;)
Matthew Scharley