JSands Posted August 18, 2012 Posted August 18, 2012 I'm trying to strip the comma's out of a string, and StringReplace seems to be what I need to use. For example: Local $Text = "$1,500,000" $Text = StringReplace($Text, ",", "") However, when I try to specify comma "," it interprets the comma as ending the searchstring/start field. Is there an escape character that I need to use in this function to have it correctly interpret the comma?
Shane0000 Posted August 18, 2012 Posted August 18, 2012 When I ran that it returned w/ no commas. Local $Text = "$1,500,000" $Text = StringReplace($Text, ",", "") msgbox(0,"",$Text)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now