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

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

 



On 27/02/2008, Zoltán Németh <znemeth@xxxxxxxxxxxxxx> wrote:>> sorry that's messed up a bit, as I typed it right here in my mailer ;)>>  preg_replace('/\b([^\s]+)a\b.*/U', '$1A', 'whatever i want that hasa a>  on the end');>>  greets>> Zoltán Németh>
Thank you very much, Zoltan. Is there a known UTF-8 limitation?Because it works fine for me in English letters (well, the opposite ofwhat I needed but I was able to work with it as which polar I startwith was arbitrary), but not in Hebrew letters. For instance, thisworks 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, orsomething else? Thank you for your assistance, it is much appreciatedand I'm learning what I can.
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