Connecting Tech Pros Worldwide Help | Site Map

Regular expression help

Karin J
Guest
 
Posts: n/a
#1: Sep 26 '07
Hi everyone

I am using a ereg_replace to strip all but certain allowed characters
from a string:
$string = ereg_replace("([^ 0-9A-Za-zÅ*ŒŽšœžŸÀ-ÖØ-öø-þ-])","",$string);

I would like to extend this to allow HTML character references of the
form "&#number;" where number is the three or four digit code number
of the character. Examples would be "ä" and "ẽ".

I am sorry but regular expressions hurt my brain!

Thankyou in advance
Karin

Steve
Guest
 
Posts: n/a
#2: Sep 26 '07

re: Regular expression help



"Karin J" <k.x.jensen@googlemail.comwrote in message
news:1190800981.199664.221350@19g2000hsx.googlegro ups.com...
Hi everyone

I am using a ereg_replace to strip all but certain allowed characters
from a string:
$string = ereg_replace("([^ 0-9A-Za-zSOZsozYÀ-ÖØ-öø-þ-])","",$string);

use preg. read the manual for an explanation.

I would like to extend this to allow HTML character references of the
form "&#number;" where number is the three or four digit code number
of the character. Examples would be "ä" and "ẽ".

I am sorry but regular expressions hurt my brain!

as well as reading the manual. ;^) were you to have, you'd notice that you
would have been instructed to use preg rather than ereg for a miriad of
reasons. not only that, but you'd see an example of preg_replace doing
*exactly* what you're asking help on.

if regex hurts your brain, don't use it...you won't be able to maintain it
once you initially write it. it is a language in itself.


Closed Thread