Jump to content
xisto Community
dserban

The Absolute Bare Minimum Every Programmer Should Know About Regular Expressions

Recommended Posts

Well, the title says it all and I really don't have anything to add to that, except to say that this is a really, really powerful technology that is very pervasive in many programming as well as scripting languages and as well in mainstream database products.

I really recommend you put in the time and effort to learn regular expressions, they are power tools that are going to open for you a whole new world of text processing possibilities.

Link:
http://forums.xisto.com/no_longer_exists/

Share this post


Link to post
Share on other sites

regexp in PHP Arrays:

Clear blanks:

$array = preg_grep('/[^$]/', $array);

Patterns for zip codes
$zip_code = str_replace(' ','','ZIP CODE');	$pattern = array(	  array(		'/^[[:alnum:]]{6,6}+$/',		'/[[:alpha:]]/',		'/[[:digit:]]/'	  ),	  array(		'/^(\d){5,5}+$/'	  )	);		$is_zip_code = true	for($_j = 0; $_j < count($pattern[$_i]); $_j++){	  $is_zip_code = ($is_zip_code and preg_match($pattern[$_i][$_j],$zip_code));	}

Regexp have power to resume your code in rules, then you are able to change the pattern easily.
There are many tools to create regexp patterns.

Blessings!
Edited by develCuy (see edit history)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.