gear Posted January 20, 2007 Posted January 20, 2007 I copy a string from a file, the string in the file is: this is a "line" of text since I cannot change the " to be ' mannully, so the string will be $str1="this is a "line" of text" Now I want to repalce the " to space, I use: $str1="this is a "line" of text" $text = StringReplace($str1, """, " ") but it fails. How can I do it? Gear
Developers Jos Posted January 20, 2007 Developers Posted January 20, 2007 StringReplace($Str1,'"','') -or- StringReplace($Str1,"""","") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Moderators SmOke_N Posted January 20, 2007 Moderators Posted January 20, 2007 StringReplace($Str1,'"','')-or-StringReplace($Str1,"""","")forgot StringReplace($sString, Chr(34), '') Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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