lsakizada Posted November 16, 2008 Posted November 16, 2008 I have this text: $MyStr ="Action.c(4): <soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www" I want to replace: Action.c(4): with blank string ( "") Why the following code does not working for me? $MyStr =StringRegExpReplace ( $MyStr, "Action.c(\d+):", "") Be Green Now or Never (BGNN)!
martin Posted November 16, 2008 Posted November 16, 2008 I have this text: $MyStr ="Action.c(4): <soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www" I want to replace: Action.c(4): with blank string ( "") Why the following code does not working for me? $MyStr =StringRegExpReplace ( $MyStr, "Action.c(\d+):", "")You need to escape the brackets $MyStr =StringRegExpReplace ( $MyStr, "Action.c\(\d+\):", "") Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
lsakizada Posted November 16, 2008 Author Posted November 16, 2008 You need to escape the brackets $MyStr =StringRegExpReplace ( $MyStr, "Action.c\(\d+\):", "") Hi Martin, thank you very much this helped me. Best Regards Be Green Now or Never (BGNN)!
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