How to match the sentence that start with "أقول " by this code?
Regex.Matches(Content, "أقول " );
This is an arbic word. "أقول " What is the regular expression exactly ?
Regarding you comment, you want to find any match that starts with "أقول " and ends with "أقول". If this is true, then this is the way:
Regex.Matches(Content, "أقول .*أقول");
For example, if the Content
is:
أقول ولكنك لا تسمع ما أقول بسبب صوتك العالي
Then it will match:
أقول ولكنك لا تسمع ما أقول
There is no problem with Arabic being RTL, it's all about viewing, they are not stored in in reverse!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With