Jump to content

sanjoyc

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

sanjoyc's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. sanjoyc

    REGEX help

    Many many thanks....
  2. sanjoyc

    REGEX help

    Thanks for quick reply. But my problem does not solve yet. The text [b]{{img=[/b] should be replaced with [b]<img src[/b] and [b]}}[/b] with [b]>[/b] So the following text [quote]This is an image {{img='http://path/to/image/imagename.jpg' border='0' width='100' alt='Alternate text'}} and this is another image {{img='http://path/to/image/imagename.png' border='0' width='100' alt='Alternate text'}}...blah blah blah...[/quote] should be look like [quote]This is an image <img src='http://path/to/image/imagename.jpg' border='0' width='100' alt='Alternate text'> and this is another image <img src=='http://path/to/image/imagename.png' border='0' width='100' alt='Alternate text'>...blah blah blah...[/quote] But when I used your code: [quote]$str = "This is an image {{img='http://path/to/image/imagename.jpg' border='0' width='100' alt='Alternate text'}} and this is another image {{img='http://path/to/image/imagename.png' border='0' width='100' alt='Alternate text'}}...blah blah blah..."; $test = preg_replace('|\{\{img(.+?)\}\}|i', "<img$1 />", $str); print_r( $test);[/quote] I got the result like [quote]This is an image  and this is another image ...blah blah blah...[/quote] I think, I can clarify my problem now. Thanks
  3. sanjoyc

    REGEX help

    Please help me in REGEX code. I am very new to REGEX. I have text like: [code]This is an image {{img='http://path/to/image/imagename.jpg' border='0' width='100' alt='Alternate text'}} and this is another image {{img='http://path/to/image/imagename.png' border='0' width='100' alt='Alternate text'}}...blah blah blah...[/code] I need to replace all [b]{{img[/b] with [b]<img[/b] and [b]}}[/b] with [b]>[/b] How could I do this? Anyone can help me?
×
×
  • Create New...

Important Information

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.