PHP RegEx: Match A String
Submitted by ronard on Wednesday, March 19, 2014 - 22:15.
Language
In this tutorial I will show you the basic in regex.
In brief discussion.
Regex is considered a method of matching pattern within a string. In PHP usually used PCRE or "Perl Compatible Regular Expressions".
Let's see a sample to print a string.
The above code are printing "abcdefghijklmnopqrstuvwxyz0123456789". Now were going to match the character "xyz" using regex.
The code above will output "1" because the character "xyz" are matches to the string given. Then the preg_match will output zero "0" if it could not matches to the string given.
- <?php
- // create a string
- $string = 'abcdefghijklmnopqrstuvwxyz0123456789';
- // echo our string
- echo $string;
- ?>
- <?php
- // create a string
- $string = 'abcdefghijklmnopqrstuvwxyz0123456789';
- ?>
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
- 45 views