Convert latin letters to cyrillic

I have a strange problem:

Robot scrapes a data table that contains mostly text. Some text is mixed with both Latin and Cyrillic letters. For example a word “ЮЖALНЯ” where “AL” part is Latin.

I want a result to be completely Cyrillic like this “ЮЖНАЛЯ”.

Should I use Replace for each Latin letter, or is there a better way?

HI @NotFranmax

I am not aware of conversion part

if you know that you can try this regex and replace it to Cyrillic letter

\p{Latin}+

Hope it may helpful

Regards
Sudharsan

have a look to this package here:

maybe it can serve it

You can try using regular expression, can explore below post:
regex - How to match Cyrillic characters with a regular expression - Stack Overflow.