Little help needed: text to uppercase except html tags

Discussion in 'PHP' started by goscript, Oct 23, 2007.

  1. #1
    Hi,
    I'm trying to do this but i simply can't get to a solution.

    What I have:
    I need to convert that to :
    Basically what i need is to skip somehow the text between < > but can't get it done correctly.

    Any ideas?

    Regards
     
    goscript, Oct 23, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    
    $text = preg_replace('/>[^<]+</e', 'strtoupper("$0")', $text);
    
    PHP:
     
    nico_swd, Oct 23, 2007 IP
    goscript likes this.
  3. goscript

    goscript Prominent Member

    Messages:
    2,753
    Likes Received:
    306
    Best Answers:
    0
    Trophy Points:
    315
    #3
    Many thanks nico, patterns always give me troubles :D
     
    goscript, Oct 23, 2007 IP
  4. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #4
    I modified my code above a little bit. It works just link the other though.
     
    nico_swd, Oct 23, 2007 IP
  5. goscript

    goscript Prominent Member

    Messages:
    2,753
    Likes Received:
    306
    Best Answers:
    0
    Trophy Points:
    315
    #5
    One more question if you don't mind:

    Let's say i want to replace all a letters with letter b from:
    Is there any way to do this, but replace only the letters that are not part of html tags as i don't want to change "image.com/sampleimage.jpg" to "imbge.com/sbmpleimbge.jpg"

    Also, uppercase does matter.

    So the text will be turned into
    Thanks
     
    goscript, Oct 23, 2007 IP
  6. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #6
    Like this?
    
    $text = preg_replace('/>[^<]+</e', 'str_replace("a", "b", "$0")', $text);
    
    PHP:
     
    nico_swd, Oct 23, 2007 IP
  7. goscript

    goscript Prominent Member

    Messages:
    2,753
    Likes Received:
    306
    Best Answers:
    0
    Trophy Points:
    315
    #7
    Yes, many thanks :)
     
    goscript, Oct 23, 2007 IP