PHP RegEx: Match the Beginning of the String

Language
In previous tutorial we match the given string. Now we are going to match at the beginning of the given string.
  1. <?php
  2. // make a string
  3. $string = 'Ronard';
  4.  
  5. echo "<b>String: </b>".$string."<br>";
  6. // match the beginning of the string
  7. if(preg_match("/^Ron/", $string))
  8. {
  9. // if it matches we display this line
  10. echo 'The string begins with Ron';
  11. }
  12. else
  13. {
  14. // if no match is found display this line
  15. echo 'No match found';
  16. }
  17. ?>
The regex character to read beginning is the caret (^). Then we see if the string given begin with Ron. The forward slashes (/) we see are the delimeter that hold our regex pattern. And the quotations are used to 'wrap it all'. Then we see the (^) will put as the beggining of the string.

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