Tilde operator in Regular expressions

39,377

Solution 1

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 portion (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 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 delimiter set to "/"

/\/\//

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

#//#

Solution 2

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.

Share:
39,377
Keira Nighly
Author by

Keira Nighly

Updated on December 08, 2020

Comments

  • Keira Nighly
    Keira Nighly over 3 years

    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?