My string is in a foreign language. I use the following regular expression:
$str = 'մի քանի Բառ ձեր մասին';
$word = 'բառ';
$cont = preg_match_all("/.{0,80}[^\s]*?".preg_quote($word)."[^\s]*?.{0,80}/si",$str,$matched);
print_r($matched);//returns Array ( [0] => Array ( ) ) ..
.
...but if I set:
$word = "Բառ";//returns Array ( [0] => Array ( [0] => մի քանի Բառ ձեր մասին ) )
What can I do to be able to use I modifier in foreign languages too?
preg_match_all, just search for the wanted word and use thePREG_OFFSET_CAPTUREflag to get the offsets forsubstr(see stackoverflow.com/questions/3306513). – Gumbo Aug 24 '10 at 10:09PREG_OFFSET_CAPTUREto get the ofsets too, it will return ampty result if mthe offset is less then i mention. am i correct? ie, if i setoffset=30but there is only 29 characters, it will return empty result? – Syom Aug 24 '10 at 10:16