Nov 22, 2009

The Absolute Bare Minimum Every Programmer Should Know About Regular Expressions

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Programming > Programming General > Design Practises, Patterns & Ideas

The Absolute Bare Minimum Every Programmer Should Know About Regular Expressions

dserban
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://immike.net/blog/2007/04/06/the-abso...ar-expressions/

Comment/Reply (w/o sign-up)

develCuy
regexp in PHP Arrays:

Clear blanks:
CODE
$array = preg_grep('/[^$]/', $array);


Patterns for zip codes
CODE
$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!

 

 

 


Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)


See Also,

*SIMILAR VIDEOS*
Searching Video's for absolute, bare, minimum, programmer, regular, expressions
advertisement



The Absolute Bare Minimum Every Programmer Should Know About Regular Expressions

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com