n9mfk9 Posted January 11, 2008 Posted January 11, 2008 Hi everyone is there a way to have_StringBetween look for a end of a line or cr thanks Beau
sirjaymz Posted January 11, 2008 Posted January 11, 2008 there might be a way to search in the string for the ascii character set., change the entire string to ascii codes, then search, then change it back to the string values of what the ascii codes equal. This way you could search for the hex,dec value for it. Just a thought.
Paulie Posted January 11, 2008 Posted January 11, 2008 You can do a stringregexp() IIRC "$" matches end of string, and with this: "(?m)" then $ matches newlines.
n9mfk9 Posted January 12, 2008 Author Posted January 12, 2008 What did i do wrorg _StringBetween($line, '\%','(/n+/r)', -1, 1) Beau
martin Posted January 12, 2008 Posted January 12, 2008 What did i do wrorg _StringBetween($line, '\%','(/n+/r)', -1, 1)BeauLooks like it should be '(\n+\r)' not '(/n+/r)' 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.
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