Re: Cannot even come up with the beginning of a regex

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 28/02/2008, Casey <heavyccasey@xxxxxxxxx> wrote:>  >  Thank you very much, Zoltan. Is there a known UTF-8 limitation?>  >  Because it works fine for me in English letters (well, the opposite of>  >  what I needed but I was able to work with it as which polar I start>  >  with was arbitrary), but not in Hebrew letters. For instance, this>  >  works as expected:>  >>  >  $test="aabacada aa a f";>  >  $test=preg_replace('/\b([^\s]+)a\b.*/U', '$1A', $test);>  >  print $test; // PRINTS aabacadA aA a f>  >>  >  However, this does not:>  >>  >  $test="אאבאגאדא אא א ";>  >  $test=preg_replace('/\b([^\s]+)ע\b.*/U', '$1א', $test);>  >  print $test; // PRINTS אאבאגאדא אא א>  >>  >  Am I misunderstanding something, or is there a UTF-8 problem, or>  >  something else? Thank you for your assistance, it is much appreciated>  >  and I'm learning what I can.>> The "a" character (97) is different from the "א" character (1488).>>  $a = html_entity_decode('&#1488;');>> $test=preg_replace('/\b([^\s]+)' . $a . '\b.*/U', '$1A', $test);>>> Will this work?
No, it doesn't. I've been playing around a bit and learning, and itlooks like it really should work. With English letters it does. Butnot with Hebrew.  You can see the result and the exact  code usedhere:http://gibberish.co.il/test.html
I appreciate the assistance. I'm certain that we're missing only somesmall detail here.
Dotan Cohen
http://what-is-what.comhttp://gibberish.co.ilא-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת;
A: Because it messes up the order in which people normally read text.Q: Why is top-posting such a bad thing?

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux