polps Posted March 29, 2010 Share Posted March 29, 2010 Hello all,I have the following stringRxBuffer = (79,1bit,1256)and I want to replace the last numbers to obtain this stringRxBuffer = (79,1bit,n)I wrote this regular expression$line = StringRegExpReplace($line, "RxBuffer\s?=\s?\((\d+),(\dbit),(\d+)\)", "RxBuffer = ($1,$2,n)")But the replaced string is that:RxBuffer = (79,1bin)Using online tools (like gskinner.com) I checked the sintax and seems to be ok.Can anyone help me to find the mistake? Thanks! Link to comment Share on other sites More sharing options...
Ascend4nt Posted March 29, 2010 Share Posted March 29, 2010 Works fine for me, pulling the code straight off the page and running it. Perhaps $line contains something other than what you wrote? My contributions: Performance Counters in Windows - Measure CPU, Disk, Network etc Performance | Network Interface Info, Statistics, and Traffic | CPU Multi-Processor Usage w/o Performance Counters | Disk and Device Read/Write Statistics | Atom Table Functions | Process, Thread, & DLL Functions UDFs | Process CPU Usage Trackers | PE File Overlay Extraction | A3X Script Extract | File + Process Imports/Exports Information | Windows Desktop Dimmer Shade | Spotlight + Focus GUI - Highlight and Dim for Eyestrain Relief | CrossHairs (FullScreen) | Rubber-Band Boxes using GUI's (_GUIBox) | GUI Fun! | IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) | Magnifier (Vista+) Functions UDF | _DLLStructDisplay (Debug!) | _EnumChildWindows (controls etc) | _FileFindEx | _ClipGetHTML | _ClipPutHTML + ClipPutHyperlink | _FileGetShortcutEx | _FilePropertiesDialog | I/O Port Functions | File(s) Drag & Drop | _RunWithReducedPrivileges | _ShellExecuteWithReducedPrivileges | _WinAPI_GetSystemInfo | dotNETGetVersions | Drive(s) Power Status | _WinGetDesktopHandle | _StringParseParameters | Screensaver, Sleep, Desktop Lock Disable | Full-Screen Crash Recovery Wrappers/Modifications of others' contributions: _DOSWildcardsToPCRegEx (original code: RobSaunder's) | WinGetAltTabWinList (original: Authenticity) UDF's added support/programming to: _ExplorerWinGetSelectedItems | MIDIEx UDF (original code: eynstyne) (All personal code/wrappers centrally located at Ascend4nt's AutoIT Code) Link to comment Share on other sites More sharing options...
polps Posted March 29, 2010 Author Share Posted March 29, 2010 Really, checking this simple "standalone" code it works fine to me too. $line = "RxBuffer = (79,1bit,1256)" $line = StringRegExpReplace($line, "RxBuffer\s?=\s?\((\d*),(\dbit),(\d*)\)", "RxBuffer = ($1,$2,n)") msgbox(0,"",$line) Actually, in my code $line is read from a text file. May be there is something wrong in my code or some "odd" character like linefeed, carriage return or tab. I have to look into... Thanks! Link to comment Share on other sites More sharing options...
dantay9 Posted March 29, 2010 Share Posted March 29, 2010 If it is an extra line feed or something, try StringStripWS to take off the trailing and leading white space. Link to comment Share on other sites More sharing options...
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