I want to be able to detect (using regular expressions) if a string contains hebrew characters both utf8 and iso8859-8 in the php programming language. thanks!
|
|
Here's map of the iso8859-8 character set. The range E0 - FA appears to be reserved for Hebrew. You could check for those characters in a character class:
For UTF-8, the range reserved for Hebrew appears to be 0591 to 05F4. So you could detect that with:
Here's an example of a regex match in PHP:
|
|||
|
|
First, such a string would be completely useless - a mix of two different character sets? Both the hebrew characters in iso8859-8, and each byte of multibyte sequences in UTF-8, have a value |
||||||
|
