ReplaceRegionalLetters
This function replaces all polish chars from specified string with equivalents from standard charset.
Syntax
ReplaceRegionalLetters("baseString");
Function arguments
- baseString – (String) The string in which chars are to be replaced.
Return value
This function returns String.
Returns input string in which all polish regional letters have been replaced with their standard charset equivalent.
Examples
Example 1:
This will return 'ace’.
text = "ąćę" ReplaceRegionalLetters(text);