Skip to content
Advertisement

Regular expressions and matching [closed]

Here is a list of examples of PHP regular expressions examples. Maybe this helps someone, as admin/ or another user can’t make clear that I was trying to share my approaches.

preg_match does the search (preg_replace is a replacer).

preg_match has three parameters – preg_match(FindWhat, FindWhere, GivingOutput);

Example 1):

JavaScript

preg_match finds only one result (the firstly found result), with two options: [0] or 1.

Example 2): find everything (any characters,words..) inside our search criteria:

JavaScript

(Note, that option 1 is not available if when you don’t use brackets in search criteria (as we have above, in example 1)

Example 3):

If your target text has many same occurrences, like this: $text = ‘Hello user Jimmy Jones, it’s me. Hello user Mery Pawders, it’s still me.’;

Now, here are two different matches, so, we need to use preg_match_all

JavaScript

Example 4): search among many possibilities:

JavaScript

Example 5): To find a string, while input text contains new lines, you must uses at the end;

JavaScript

Example 6): Your search is always case sensitive. To make a case insensitive search, use i at the end (if you want, without s);

JavaScript

Example 7): to search for special characters (like /”.<*’?, etc.) inside preg_match, you need to use this escape sign:

JavaScript

Now, we can use the ^ operator, which searches for results conversely.

Example 8): find everything rather than letters and numbers:

JavaScript

For search and replace, we have a bit different structure, as we need to use the new variable.

Example 9): find and replace everything rather than letters and numbers with other character, using this operator: ^

JavaScript

Example 10): search and add something inside the found results:

JavaScript

Example 11): find all links inside text:

JavaScript

Example 12): like the example 11 (but with replace) – find links in text and put them in anchored tags:

JavaScript

Output will be the same sentence, but the links will be anchored.

1) Tips: Do not use preg_match() if you only want to check if one string is contained in another string. Use stristr() or strpos() instead as they will be faster.

2) **More advanced, specific examples about PHP regular expressions, use Google, or see ** full options and manuals at – http://www.php.net/manual/en/reference.pcre.pattern.syntax.php

(You can review shortly all operators list here –
http://www.catswhocode.com/blog/15-php-regular-expressions-for-web-developers
http://www.noupe.com/php/php-regular-expressions.html
)

3) For HTML codes, there exist special light, PHP software, called- DOM Parser. But sometimes, if you know PHP regular expressions well, you might not need a DOM parser.

Advertisement

Answer

Try this regular expression:

JavaScript

This one checks for a Shop at the beginning and a zero at the end.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement