UTF-8 in PHP?

2008-02-28 Thread Dotan Cohen
I'm trying to make a regex that will change kaf, mem, nun, pe, and tzadik to their final form if they are at the end of a word. On the php mailing list, we came to this regex, which works to replace a letter only at the end of a word, and it works well: $text=preg_replace('/\b([^\s]+)a\b.*/U',

subscribing to the list

2008-02-28 Thread Tzafrir Cohen
Is there a page with instructions for subscription to this mailing list? How about archives? Any chance of standard mailing list headers? -- Tzafrir Cohen | [EMAIL PROTECTED] | VIM is http://tzafrir.org.il || a Mutt's [EMAIL PROTECTED] || best

Re: UTF-8 in PHP?

2008-02-28 Thread shimi
On 2/28/08, Dotan Cohen [EMAIL PROTECTED] wrote: I'm trying to make a regex that will change kaf, mem, nun, pe, and tzadik to their final form if they are at the end of a word. On the php mailing list, we came to this regex, which works to replace a letter only at the end of a word, and it

Re: subscribing to the list

2008-02-28 Thread Shlomi Fish
On Thursday 28 February 2008, Tzafrir Cohen wrote: Is there a page with instructions for subscription to this mailing list? There's http://www.hamakor.org.il/mailing-lists/linux-il.html How about archives? It also lists archives. Any chance of standard mailing list headers? I talked

Re: UTF-8 in PHP?

2008-02-28 Thread Dotan Cohen
On 28/02/2008, shimi [EMAIL PROTECTED] wrote: It can be a UTF-8 problem in general - PHP has many functions that are not UTF-8 aware, which is why we have the mbstring functions... which are equivalent to historical PHP functions, but work well on multibyte strings... there's even an option to

http://wiki.osdc.org.il/ is back online

2008-02-28 Thread Shlomi Fish
Hi all! The Israeli OSDC (Open Source Developers' Conference) wiki is back online: http://wiki.osdc.org.il/index.php/Main_Page Thanks should go to: 1. Andy Armstrong ( http://hexten.net/ ) for providing hosting and setting up the wiki. 2. Issac Goldstand for seting up the DNS. 3. Gabor Szabo

Re: UTF-8 in PHP?

2008-02-28 Thread Meir Kriheli
Dotan Cohen wrote: On 28/02/2008, shimi [EMAIL PROTECTED] wrote: It can be a UTF-8 problem in general - PHP has many functions that are not UTF-8 aware, which is why we have the mbstring functions... which are equivalent to historical PHP functions, but work well on multibyte strings... there's

Re: UTF-8 in PHP?

2008-02-28 Thread Dan Kenigsberg
On Thu, Feb 28, 2008 at 12:34:42PM +0200, Dotan Cohen wrote: I'm trying to make a regex that will change kaf, mem, nun, pe, and tzadik to their final form if they are at the end of a word. On the php mailing list, we came to this regex, which works to replace a letter only at the end of a