We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2719d commit b51da69Copy full SHA for b51da69
README.md
@@ -10,7 +10,7 @@ VerbalExpressions is a PHP library that helps to construct hard regular expressi
10
11
$regex = new VerEx;
12
13
-$regex ->startOfLine()
+$regex ->startOfLine()
14
->then( "http" )
15
->maybe( "s" )
16
->then( "://" )
@@ -31,3 +31,5 @@ echo "<pre>". $regex->getRegex() ."</pre>";
31
echo $regex ->clean(array("modifiers"=> "m","replaceLimit"=>4))
32
->find(' ')
33
->replace("This is a small test http://somesite.com and some more text.", "-");
34
+
35
+```
0 commit comments