PHP Classes

PHP Str Match and Split: Process strings with regular expressions

Recommend this page to a friend!
  Info   View files View files (3)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 411 This week: 1All time: 6,476 This week: 571Up
Version License PHP version Categories
php-str-match-split 0.1GNU General Publi...3.0Text processing
Description 

Author

This class can process strings with regular expressions.

It can process a given string to execute several types of operations with regular expressions.

Currently it can match a given regular expression and return the whole matched string or a given matched group, replace values that match a regular expression, and split a string with a given regular expression.

Picture of P Guardiario
Name: P Guardiario <contact>
Classes: 6 packages by
Country: Philippines Philippines
Age: ???
All time rank: 162618 in Philippines Philippines
Week rank: 420 Up5 in Philippines Philippines Up

Details

Phpstr Give php strings easy to remember regex functionality ========= Do you ever get tired of looking up preg functions because you forgot the order of the arguments? Me too. ```php require 'phpstr.php'; ``` Return a match ```php str('There are 23 people reading this blog')->match('/\d+/'); ``` Substitution ```php str('all of the es')->gsub('/e/', 'y'); ``` Scan will return an array of matches ```php str('010 202 312 332')->scan('/\d+/'); ``` Split will return an array of tokens ```php str('010 202-312 332')->split('/\s/'); ```

  Files folder image Files  
File Role Description
Plain text file phpstr.php Class Class source
Accessible without login Plain text file README.md Doc. Documentation
Accessible without login Plain text file usage.php Example Example script

 Version Control Unique User Downloads Download Rankings  
 100%
Total:411
This week:1
All time:6,476
This week:571Up