I'm wondering, is there any way to scan a string in javascript.

e.g, I've got a string abcdefdfdfssdfdssdffdq="HELLO"fdndkjdsnkjdnlkdfns I'd like to scan that string and delete the characters between q=" and " and replace it with GOODBYE is this possible?

link|improve this question

76% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can use string.replace(regexp/substr,newstring) As in: "abcdefdfdfssdfdssdffdq=\"HELLO\"fdndkjdsnkjdnlkdfns".replace(/".+"/, "\"GOODBYE\"")

link|improve this answer
But, what if I don't know what the word within q="" is? – Skizit Jan 30 '11 at 22:44
2  
Edited the code. If you are not familiar with them, I would suggest you spent a little time reading about regular expressions. – Flavius Stef Jan 30 '11 at 22:47
feedback
var mystring = 'abcdefdfdfssdfdssdffdq="HELLO"fdndkjdsnkjdnlkdfns'

var myarray = mystring.split('"');
myarray[1] = 'GOODBYE';
mystring = myarray.join('"');

Reference to JavaScript String.split() method

Reference to Javascript Array.join() method

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.