Get Cirillic string from email body

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

Hi.
I found solution. So, I used Write text file and Reade text file activities. For the same i’m inputting “windows-1251” in Encoding fild. The text file is like buffer and Regex string is applaying on text file (variable for text file.)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.