DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Clean Magic Quoting In ColdFusion 5 And Later
I'm updating my weblog software and needed some code to properly convert typewriter quotes to proper typographer's quotes.
<cfscript>
function magicQuote(txt) {
// Left quotes
txt = REReplace(txt, "(^|[ " & Chr(9) & Chr(10) & Chr(13) & "'])""", "\1#8220;", "ALL");
txt = REReplace(txt, "(^|[ " & Chr(9) & Chr(10) & Chr(13) & "]|#8220;)'", "\1#8216;", "ALL");
// Right quotes
txt = Replace(txt, """", "#8221;", "ALL");
txt = Replace(txt, "'#8220;", "'#8221;", "ALL");
txt = Replace(txt, "'", "#8217;", "ALL");
return txt;
}
</cfscript>
ColdFusion 5 has problems with <em>\s</em>, and the character class is a workaround for this.





