Name: | Walle |
Titel: | Re: Umlaute rausfiltern |
Inhalt: | JOP... ich weiß nicht warum, aber jetzt funktioniert es mit dem CHR() <!---// replace german characters //---> <cfset arguments.title = reReplace(arguments.title, CHR(228), "ae", "all") /><!--- ä ---> <cfset arguments.title = reReplace(arguments.title, CHR(196), "Ae", "all") /><!--- Ä ---> <cfset arguments.title = reReplace(arguments.title, CHR(246), "oe", "all") /><!--- ö ---> <cfset arguments.title = reReplace(arguments.title, CHR(214), "Oe", "all") /><!--- Ö ---> <cfset arguments.title = reReplace(arguments.title, CHR(252), "ue", "all") /><!--- ü ---> <cfset arguments.title = reReplace(arguments.title, CHR(220), "Ue", "all") /><!--- Ü ---> <cfset arguments.title = reReplace(arguments.title, CHR(223), "ss", "all") /><!--- ß ---> |