SoftVoile Posted January 12, 2009 Posted January 12, 2009 hi, QA - how can i remove all the 'a' , '0' & '6' from the result of MsgBox? $text = "AC9223Lac8712006" MsgBox(0, "Text", $text) QB - how can i change '1234567890' to '0987654321' using autoit script? Unresolved topics:1- Please help me in Editing or replacing a page in FireFox and IE.Please have a look at them.
Andreik Posted January 12, 2009 Posted January 12, 2009 (edited) hi, QA - how can i remove all the 'a' , '0' & '6' from the result of MsgBox? $text = "AC9223Lac8712006" MsgBox(0, "Text", $text) QB - how can i change '1234567890' to '0987654321' using autoit script?QA - StringRegExpReplace() $text = "AC9223Lac8712006" MsgBox(0, "Text",StringRegExpReplace($text,"(?-i)[a06]","")) QB - _StringReverse() #include <String.au3> MsgBox(0,"",_StringReverse('1234567890')) Edited January 12, 2009 by Andreik
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