PHP RegEx: Match a pattern at the end of the string

Language

In previous tutorial we have a pattern that match a string at the beggining using caret(^). Now we try to match the pattern at the end of the string using \z. What is \z? This is end of subject or read at the end of subject. We still use (i) case insensitive modifier so that it can read any case.
  1. <?php
  2. // create a string
  3. $string = 'Ronard';
  4.  
  5. //display the string Ronard
  6. echo "<b>String is: </b>".$string."<br/>";
  7.  
  8. // try to match our pattern at the end of the string
  9. if(preg_match("/nard\z/i", $string)) {
  10.  
  11. // if our pattern matches we echo this
  12. echo 'The string ends with nard';
  13. } else {
  14.  
  15. // if no match is found we echo this line
  16. echo 'No match found';
  17. }
  18. ?>
The above script will generate "The string ends with nard" which is read at the end of the subject.

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment