Forum Moderators: open
i've a string which has a value of...
$123.45 (or infact any number with a leading $ sign)
i need to set a variable to be the string value but without the leading $ sign,
how should i proceed... please!!!
You can manipulate string data with Left, Right and Mid. Len gives you the length of a string.
str = "$123.45"
str = replace(str, "&", "")
response.write "good luck!" ;-)