Hi,
I trying to get any words from email body, like “Добър Ден Ученици” and I want to displaying in Message box.
- getting mail body in variable - MailBody
- using twо Assign activity : in first to variable Note - Note=MailBody.toString
in second Note=System.Text.RegularExpressions.Regex.Match(Note,“(?<=Sender:)([\p{Cyrillic}A-Za-z0-9,.-]+.[\p{Cyrillic}A-Za-z0-9,.-]+.[\p{Cyrillic}A-Za-z0-9,.-]+)”).Value
To this point every thing is OK, but Message box is empty.
If I use string on english it’s working of course i using another Regex - (?<=Sender:)([\w]+.[\w]+.[\w]+)
How i can display cyriilic words in Message box