Non English character to English character in BP using VB .NET

Nishajagadeesan

New Member
Looking for a function in Blue Prism to replace non english characters with english characters.
Example:
Input: Andrés Chávez Output: Andres Chavez
 

mokelok

New Member
Hi,
You can try and create similar logic as described here, if know some c#. Change of Russian chars into English
Basically you would have dictionary with key: value pairs, where key would be non English chars, and value would be English equivalent.
Then you would need some loop that would be replacing key char with its value in the target string.
 
Top