我正在寻找一种模式来在文章内容上准确找到希伯来语单词。
例子:
$word = 'דף הבית';
请帮我!
<?php
$subject = "STRING_TO_SEARCH";
$pattern = '/^דף הבית$/';
preg_match($pattern, substr($subject,3), $matches, PREG_OFFSET_CAPTURE);
print_r($matches);
?>
http://php.net/manual/en/function.preg-match.php 有关 php 函数的更多示例。
如果您想查找任何用希伯来语书写的单词,请将希伯来字母表中每个字母的 $pattern 更改为 /^[first letter|second letter|...]/。这本质上是,如果单词以第一个字母或第二个字母开头,依此类推。