RE: Regexpr-Problem

2001-05-11 Thread Lee Goddard
Brian Raven sig file says: > It's, uh, pseudo code. Yeah, that's the ticket... > [...] > And "unicode" is pseudo code for $encoding. :-) > -- Larry Wall in > <[EMAIL PROTECTED]>˽ã®YŠX‚X´Š÷z¹ŠËz»rØy+µçšm§ÿåŠË > lz»Àrدy+Zµç(›ùšŠYšŸùb²Ø§~Úrدz—« How can I get that article? I'v

Regexpr-Problem

2001-05-11 Thread brianr
Lange writes: > for your understanding: > ô is equal to hexcode xf4 > õ is equal to hexcode xf5 > > > the following problem appeared: > > $var="ôinit1õDresden,ômõ Gewerbeg. Kesselsdorf"; > > After a > $var=~s/(\xf4.*?\xf5)//g; > it´s supposed to keep the fol

Re: Regexpr-Problem

2001-05-11 Thread Philip Newton
Lange wrote: > $var="ôinit1õDresden,ômõ Gewerbeg. Kesselsdorf"; > > After a > > $var=~s/(\xf4.*?\xf5)//g; > > it´s supposed to keep the following: > > "Dresden, Gewerbeg. Kesselsdorf" > > > > With my old version (v5.005_3 build 517) it worked without > any complications. > > with the new

Regexpr-Problem

2001-05-11 Thread Lange
for your understanding: ô is equal to hexcode xf4 õ is equal to hexcode xf5 the following problem appeared: $var="ôinit1õDresden,ômõ Gewerbeg. Kesselsdorf"; After a $var=~s/(\xf4.*?\xf5)//g; it´s supposed to keep the following: "Dresden, Gewerbeg. Kesselsdorf" With my old ver