+ All Categories
Home > Documents > SynapseIndia PHP Development String Processing and Regular Expressions

SynapseIndia PHP Development String Processing and Regular Expressions

Date post: 02-Jun-2018
Category:
Upload: tarunsingh19866
View: 227 times
Download: 0 times
Share this document with a friend

of 12

Transcript
  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    1/12

    1

    26.3 String Processing and Regular

    Expressions

    String processing Equality and comparison two important

    operations

    strcmpfunction

    Returns1 if string 1 < string 2

    Returns 0 if string 1 = string 2

    Returns 1 if string 1 > string 2

    Relational operators

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    2/12

    2

    1 < DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

    2"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    3

    4< -- Fig. 26.7: compare.php -->

    5 < -- String Comparison -->

    6

    7

    8

    9String Comparison

    10

    11

    12

    13

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    3/12

    3

    25 elseif( strcmp( $fruits[ $i ], "banana") > 0)

    26 print( $fruits[ $i ].

    27 " is greater than banana ");

    28 else

    29 print( $fruits[ $i ]." is equal to banana ");

    30

    31 // use relational operators to compare each element

    32 // to string "apple"

    33 if( $fruits[ $i ] < "apple")

    34 print( "and less than apple
    ");

    35 elseif( $fruits[ $i ] > "apple")

    36 print( "and greater than apple
    ");

    37 elseif( $fruits[ $i ] == "apple")

    38 print( "and equal to apple
    ");

    39

    40 }

    41 ?>

    42

    43

    compare.php

    (2 of 2)

    Use relational operators to compare each arrayelement to string apple.

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    4/12

    4

    26.3 String Processing and Regular

    ExpressionsFig. 26.7 Using the string comparison operators.

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    5/12

    5

    26.3 String Processing and Regular

    Expressions

    Regular expressions Pattern matching templates

    eregfunction

    POSIX

    preg_matchfunction Perl

    ereg_replacefunction

    Building regular expressions Metacharacters

    $, ., ^

    Brackets [ ]

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    6/12

    6

    1< DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

    2"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    3

    4< -- Fig. 26.8: expression.php -->

    5< -- Using regular expressions -->

    6

    7

    8

    9Regular expressions

    10

    11

    12

    13

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    7/12

    7

    22 // search for pattern 'Now' in the beginning of

    23 // the string

    24 if( ereg( "^Now", $search ) )

    25 print( "String 'Now' found at beginning

    26 of the line.
    ");

    27

    28 // search for pattern 'Now' at the end of the string

    29 if( ereg( "Now$", $search ) )

    30 print( "String 'Now' was found at the end

    31 of the line.
    ");

    32

    33 // search for any word ending in 'ow'

    34 if( ereg( "[[::]]", $search,

    35$match ) )

    36 print( "Word found ending in 'ow': ".

    37 $match[ 1] . "
    ");

    38

    39 // search for any words beginning with 't'

    40 print( "Words beginning with 't' found: ");

    41

    42 while( eregi( "[[::]]",

    43 $search, $match ) ) {

    44 print( $match[ 1] . " ");

    45

    expression.php

    (2 of 3)

    The dollar sign special character ($) search for the

    pattern Nowat the end of the string.

    The expression inside the parentheses, [a-zA-Z]*ow,

    matches any word ending in ow. The quantifier *

    matches the preceding pattern 0or more times.

    The special bracket expressions [[::]]match the beginning and end of a

    word, respectively.

    Placing a pattern in parentheses stores the matched

    string in the array that is specified in the third argument

    to function ereg.

    The whileloop is used to find each occurrence of a

    word in the string beginning with t.

    The pattern used in this example,

    [[::]], matches any

    word beginning with the character tfollowed by one or

    more characters. Character class [[:alpha:]]

    recognizes any alphabetic character.

    Function eregiis used to specify case insensitive

    pattern matches.

    The caret special character (^) matches the

    beginning of a string. Function eregsearches the

    beginning of the string for pattern Now.

    46

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    8/12

    8

    expression.php

    (3 of 3)

    46 // remove the first occurrence of a word beginning

    47 // with 't' to find other instances in the string

    48 $search = ereg_replace( $match[1], , $search );

    49}

    50

    51 print(
    );

    52 ?>

    53

    54

    After printing a match of a word beginning with t, function

    ereg_replaceis called to remove the word from the string.

    This is necessary be because to find multiple instances of agiven pattern, the first matched instance must first be removed.

    Function ereg_replacetakes three arguments: the pattern to

    match, a string to replace the matched string and the string to

    search.

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    9/12

    9

    26.3 String Processing and Regular

    ExpressionsFig. 26.8 Regular expressions in PHP.

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    10/12

    10

    26.3 String Processing and Regular

    Expressions

    Quantifier Matches{n} Exactlyntimes.{m,n} Betweenmandntimes inclusive.{n,} nor moretimes.+ Oneor moretimes (sameas{1,}).

    * Zeroor moretimes (sameas{0,}).? Zeroor onetime(sameas{0,1}).

    Fig. 26.9 SomePHPquantifiers.

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    11/12

    11

    26.3 String Processing and Regular

    Expressions

    Character class Descriptionalnum Alphanumericcharacters(i.e., letters[a-zA-Z] or digits[0-9]).alpha Wordcharacters(i.e., letters[a-zA-Z]).digit Digits.

    space Whitespace.

    lower Lowercaseletters.upper Uppercaseletters.

    Fig. 26.10 SomePHPcharacter classes.

  • 8/10/2019 SynapseIndia PHP Development String Processing and Regular Expressions

    12/12

    12

    26.4 Viewing Client/Server

    Environment Variables

    Environment variables Provide information about execution

    environment

    Type of Web browser

    Type of server

    Details of HTTP connection

    Stored as array in PHP$_ENV


Recommended