Can uipath change abbreviation to text while typing it?

Let´s say I write BR and want it replaced right away with Best Regards. Can Uipath do that?

Hi @Tomas_Kobelka_C

Welcome to community!

As per my assumption we cannot do that dynamically.

But Replace function with hardcoding Value we may able to achieve it

YourString.Replace(“BR”,“Best Regards”)

Regards

Another option is to store all relevant Abbrevations within a Dictionary

dictCodes =New Dictionary( of String, String) From {{“BR”,“Best Regards”}, {“HRU”, “How are you”}}

And get is used eg
String.Format(“Hello, {0}”, dictCodes(“HRU”))

Or

dictCodes(“BR”) Robby Robot