A
Abby Lee
I have a string with 10 charaters 123456789A.
I only want the first 6 charaters followed by the last two...getting
rid of the 7th and 8th charaters.
If I use document.forms[0].MyTextBox.value =
TheString.substring([0-5])...I get the first 6 charaters.
([0-5],8,9) does not work nor does ([0-5],[8-9]) and I get just as bad
results with (0,1,2,3,4,5,8,9)
how do I get a string with the 7th and 8th charaters missing?
I only want the first 6 charaters followed by the last two...getting
rid of the 7th and 8th charaters.
If I use document.forms[0].MyTextBox.value =
TheString.substring([0-5])...I get the first 6 charaters.
([0-5],8,9) does not work nor does ([0-5],[8-9]) and I get just as bad
results with (0,1,2,3,4,5,8,9)
how do I get a string with the 7th and 8th charaters missing?