L
localhost
I have a string that looks like this:
"init();this.docForm.textBox1.focus
();this.docForm.textBox1.select();"
In this case, I need to replace "textBox1"
with "textBox2". However, the value-to-replace may not
be "textBox1", it could be anything. What kind of RegEx
would I need to replace a value between other parts of a
string (in this case between "docForm." and a ".")?
Thanks.
"init();this.docForm.textBox1.focus
();this.docForm.textBox1.select();"
In this case, I need to replace "textBox1"
with "textBox2". However, the value-to-replace may not
be "textBox1", it could be anything. What kind of RegEx
would I need to replace a value between other parts of a
string (in this case between "docForm." and a ".")?
Thanks.