Created
August 29, 2019 09:07
-
-
Save m-adamski/5432024e2151ee2c58d559e8f7e1c537 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function CZYSCPOLSKIEZNAKI(strCiag As String) As String | |
Dim arrFind As Variant, arrReplace As Variant, iArr As Integer | |
Dim i As Integer, temp As String | |
arrFind = Array("ę", "ó", "ą", "ś", "ł", "ż", "ź", "ć", "ń", "Ę", "Ó", "Ą", "Ś", "Ł", "Ż", "Ź", "Ć", "Ń") | |
arrReplace = Array("e", "o", "a", "s", "l", "z", "z", "c", "n", "E", "O", "A", "S", "L", "Z", "Z", "C", "N") | |
temp = strCiag | |
For i = 1 To Len(temp) | |
If Asc(Mid(temp, i, 1)) > 122 Then | |
For iArr = LBound(arrFind) To UBound(arrFind) | |
If Mid(temp, i, 1) = arrFind(iArr) Then | |
temp = VBA.Replace(Expression:=temp, _ | |
Find:=arrFind(iArr), _ | |
Replace:=arrReplace(iArr)) | |
Exit For | |
End If | |
Next | |
End If | |
Next | |
CZYSCPOLSKIEZNAKI = temp | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment