I have this kind of string
sample İletişim form:: aşağıdaki formu
What I'm aiming is to extract the string that has a unicode/non-ascii character inside of it using preg_match or preg_match_all of php.
So I'm expecting a result of 2 İletişim and aşağıdaki word only.
Array
(
[0] => İletişim
[1] => aşağıdaki
)
I just can't think of regular expression as I'm not good at it. Any aid is welcome.
Thank you so much.