472,145 Members | 1,553 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,145 software developers and data experts.

replace “ with “/”

29
how to repalce “ this character in coldfusion
Expand|Select|Wrap|Line Numbers
  1. <cfscript>
  2.   str_fnvalue = replace(str_fnvalue," “ ","&ldquo;","all");
  3.         str_fnvalue = replace(str_fnvalue,"”","&rdquo;","all");
  4.  
  5. <cfscript>
I put the cose like this but not working correctly.i tried to replace it with a word but..it not double quots...it is "&ldquo" "&rdquo;"
Dec 5 '08 #1
1 10162
acoder
16,027 Expert Mod 8TB
Hi CFFAN, welcome to Bytes!

Instead of &ldquo; and its right quote equivalent, use the entity number rather than the name, i.e. &#8820 (with a ; after it) for &ldquo; See Ref. symbols.
Dec 5 '08 #2

Post your reply

Sign in to post your reply or Sign up for a free account.

Similar topics

63 posts views Thread by Tristan Miller | last post: by
23 posts views Thread by Haines Brown | last post: by
24 posts views Thread by Swifty | last post: by
reply views Thread by Saiars | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.