/    Sign up×
Community /Pin to ProfileBookmark

Doublequotes as replacement in replace() method

I’m trying to replace all instances of the string " in a textbox with doublequotes (“), so that [COLOR=DarkRed]"text"[/COLOR] gets [COLOR=DarkRed]“text”[/COLOR]

I get not further than replacing the string with single quotes; because the replace-text withing the replace()-method has to be in doublequotes itself:

[CODE]var Searchterm = document.forms[0].q.value
var SearchtermConv = Searchterm.replace(/"/g, “‘”);
document.forms[0].q.value = SearchtermConv;[/CODE]

The above works for singlequotes. How can I convert to doublequotes?
[COLOR=DarkRed]Searchterm.replace(/"/g, “[B][COLOR=Red][/COLOR][/B]“);[/COLOR] doesn’t work

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@deep_dhyaniDec 22.2005 — do that:

[code]
var SearchtermConv = Searchterm.replace(""", "'");

[code]
Copy linkTweet thisAlerts:
@FangDec 22.2005 — replace(/"/g, """);
Copy linkTweet thisAlerts:
@PlinkauthorDec 22.2005 — deep.dhyani, this can't work since it doesn't find the desired string and if it did it would replace it with a singlequote.

Thanks Fang, that worked perfectly. Escaping does the trick.
×

Success!

Help @Plink spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...