Subject | special string question |
---|---|
Author | Olaf Kluge |
Post date | 2013-03-19T14:17:47Z |
Hello everybody,
I would check a input string and change some character.
For example: a or A = A
Ä = [
Now I have create a table with all possible characters and the exchange
character.
Is there an simpler way than this?
While count < strlength
Character = substring(input from count for 1)
Select exchangecharakter from table where inputcharacter = character into
:newcharacter
Newstring = newstring || newcharacter;
Thank you.
Best regards
Olaf
[Non-text portions of this message have been removed]
I would check a input string and change some character.
For example: a or A = A
Ä = [
Now I have create a table with all possible characters and the exchange
character.
Is there an simpler way than this?
While count < strlength
Character = substring(input from count for 1)
Select exchangecharakter from table where inputcharacter = character into
:newcharacter
Newstring = newstring || newcharacter;
Thank you.
Best regards
Olaf
[Non-text portions of this message have been removed]