Hello, i neet to substitute or replace letters(characters) IFor example, if i have a word in latin letters, i need to transform the same word in cyrilic letters. If i have the word grass, to transform it to грасс (grass => грасс)
i can make masiv with 2 rows with replaced any letter from latin to cyrilic, but then im not sure how to use the function with this masiv.
i found something like this :
1. A, А
2. B, Б
3. C, Ц
4. D, Д
Dim intCount As Long, intNum As Long
intNum = UBound(strMasiv)
For intCount = 0 To intNum Step 1
strText = Replace(strText, strMasiv(intCount, 2), strMasiv(intCount, 1))
Next intCount
i need some help to complete this, or just to give me an example how to use is.
Bookmarks