Skip to content

Commit b51da69

Browse files
committed
Update README.md
1 parent bb2719d commit b51da69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ VerbalExpressions is a PHP library that helps to construct hard regular expressi
1010

1111
$regex = new VerEx;
1212

13-
$regex ->startOfLine()
13+
$regex ->startOfLine()
1414
->then( "http" )
1515
->maybe( "s" )
1616
->then( "://" )
@@ -31,3 +31,5 @@ echo "<pre>". $regex->getRegex() ."</pre>";
3131
echo $regex ->clean(array("modifiers"=> "m","replaceLimit"=>4))
3232
->find(' ')
3333
->replace("This is a small test http://somesite.com and some more text.", "-");
34+
35+
```

0 commit comments

Comments
 (0)