Kyan Posted February 19, 2013 Posted February 19, 2013 Hi everyone I have 2 basic question about hex editing - I have several texts with a common problem, in stead of having CRLF (carriage return+line feed) only had 0x0A (LF), how do I add 0D behind every 0x0A? - Its possible to edit only the beginning of a file (speaking in large files that should't be loaded in memory) and save the changes? Heroes, there is no such thing One day I'll discover what IE.au3 has of special for so many users using it.C'mon there's InetRead and WinHTTP, way better
Nessie Posted February 19, 2013 Posted February 19, 2013 Hi everyone I have 2 basic question about hex editing - I have several texts with a common problem, in stead of having CRLF (carriage return+line feed) only had 0x0A (LF), how do I add 0D behind every 0x0A? - Its possible to edit only the beginning of a file (speaking in large files that should't be loaded in memory) and save the changes? For the first question maybe? : $string = "First Line 0x0A Another Line" $replace_string = StringReplace($string, "0x0A", "0Dx0A") MsgBox(0,"", "After: " & $string & @CRLF & "Before: " & $replace_string) For second question give a look _FileWriteToLine function in the help file: #include <File.au3> ;Example: Write to line 3 of c:\test.txt REPLACING line 3 _FileWriteToLine("c:\test.txt", 3, "my replacement for line 3", 1) ;Example: Write to line 3 of c:\test.txt NOT REPLACING line 3 _FileWriteToLine("c:\test.txt", 3, "my insertion", 0) Hi! My UDF: NetInfo UDF Play with your network, check your download/upload speed and much more! YTAPI Easy to use YouTube API, now you can easy retrive all needed info from a video. NavInfo Check if a specific browser is installed and retrive other usefull information. YWeather Easy to use Yahoo Weather API, now you can easily retrive details about the weather in a specific region. No-IP UDF Easily update your no-ip hostname(s). My Script: Wallpaper Changer Change you wallpaper dinamically, you can also download your wallpaper from your website and share it with all! My Snippet: _ImageSaveToBMPConvert an image to bmp format. _SciteGOTO Open a file in SciTE at specific fileline. _FileToHex Show the hex code of a specified file
Kyan Posted February 19, 2013 Author Posted February 19, 2013 For the first question maybe? : $string = "First Line 0x0A Another Line" $replace_string = StringReplace($string, "0x0A", "0Dx0A") MsgBox(0,"", "After: " & $string & @CRLF & "Before: " & $replace_string) For second question give a look _FileWriteToLine function in the help file: #include <File.au3> ;Example: Write to line 3 of c:\test.txt REPLACING line 3 _FileWriteToLine("c:\test.txt", 3, "my replacement for line 3", 1) ;Example: Write to line 3 of c:\test.txt NOT REPLACING line 3 _FileWriteToLine("c:\test.txt", 3, "my insertion", 0) Hi! thanks for te effort in your first example it replaces all the data without check if a CR (0x0D) exists before a LF (0x0A), it only needs to and a CR behind a LF which doesn't has a CR already for the second, in case of bynary file, it would work correctly :s Heroes, there is no such thing One day I'll discover what IE.au3 has of special for so many users using it.C'mon there's InetRead and WinHTTP, way better
Nessie Posted February 19, 2013 Posted February 19, 2013 (edited) thanks for te effort in your first example it replaces all the data without check if a CR (0x0D) exists before a LF (0x0A), it only needs to and a CR behind a LF which doesn't has a CR already for the second, in case of bynary file, it would work correctly :s For the first example maybe is this?: $string = "First Line 0x0D0x0A Another Line" $replace_string = StringReplace($string, "0x0D0x0A", "0Dx0A") MsgBox(0,"", "After: " & $string & @CRLF & "Before: " & $replace_string) Hi! Edited February 19, 2013 by Nessie My UDF: NetInfo UDF Play with your network, check your download/upload speed and much more! YTAPI Easy to use YouTube API, now you can easy retrive all needed info from a video. NavInfo Check if a specific browser is installed and retrive other usefull information. YWeather Easy to use Yahoo Weather API, now you can easily retrive details about the weather in a specific region. No-IP UDF Easily update your no-ip hostname(s). My Script: Wallpaper Changer Change you wallpaper dinamically, you can also download your wallpaper from your website and share it with all! My Snippet: _ImageSaveToBMPConvert an image to bmp format. _SciteGOTO Open a file in SciTE at specific fileline. _FileToHex Show the hex code of a specified file
Moderators Melba23 Posted February 19, 2013 Moderators Posted February 19, 2013 DiOgO,I use this Regex to set every EOL possibility to @CRLF: #include <Array.au3> $sText = "Line 1" & @CR & "Line 2" & @LF & "Line 3" & @CRLF & "Line 4" & @LF & "Line 5" & @CR & "Line 6" & @CRLF & "Line 8" $aLines = StringSplit($sText, @CRLF, 1) _ArrayDisplay($aLines, "Before") $sText = StringRegExpReplace($sText, "((?<!\x0d)\x0a|\x0d(?!\x0a))", @CRLF) $aLines = StringSplit($sText, @CRLF, 1) _ArrayDisplay($aLines, "After")It looks for @CR without a following @LF - and @LF without a leading @CR. I hope it helps. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Kyan Posted February 20, 2013 Author Posted February 20, 2013 For the first example maybe is this?: $string = "First Line 0x0D0x0A Another Line" $replace_string = StringReplace($string, "0x0D0x0A", "0Dx0A") MsgBox(0,"", "After: " & $string & @CRLF & "Before: " & $replace_string) Hi! not exactly, it is in hex code DiOgO, I use this Regex to set every EOL possibility to @CRLF: #include <Array.au3> $sText = "Line 1" & @CR & "Line 2" & @LF & "Line 3" & @CRLF & "Line 4" & @LF & "Line 5" & @CR & "Line 6" & @CRLF & "Line 8" $aLines = StringSplit($sText, @CRLF, 1) _ArrayDisplay($aLines, "Before") $sText = StringRegExpReplace($sText, "((?<!\x0d)\x0a|\x0d(?!\x0a))", @CRLF) $aLines = StringSplit($sText, @CRLF, 1) _ArrayDisplay($aLines, "After") It looks for @CR without a following @LF - and @LF without a leading @CR. I hope it helps. M23 yeah, but what means ?<! and ?! and why is a capture group inside a capture group? (like capturing it 2times xD btw, you don't know how can a file be edited in a address (0x000024 and lenght 0x2A for i.e.,) and saved without having to copy to another location/file? Heroes, there is no such thing One day I'll discover what IE.au3 has of special for so many users using it.C'mon there's InetRead and WinHTTP, way better
Moderators Melba23 Posted February 20, 2013 Moderators Posted February 20, 2013 (edited) DiOgO, yeah, but what means ?<! and ?! and why is a capture group inside a capture group? (like capturing it 2timesAs I explained, the Regex looks ahead and behind to see if there is the other part of a @CRLF - in which case it does nothing. Let me try and explain: Follow the numbers in order (?<!\x0d) - 2 - Look behind (the ?>! part) and make sure it is NOT preceded by @CR (0x0D) \x0a - 1 - Look for @LF (which is 0x0A) then | - 3 - Or \x0d - 4 - We look for @CR and then (?!\x0a) - 5 - Look ahead (?!) and make sure it is NOT followed by @LF The parts in () are non-capturing negative lookbehind/lookahead - and are well explained in my favourite Regex tutorial at http://www.regular-expressions.info/tutorial.html. The whole thing needs to be in () so that it is a capturing group for the SRER to replace. Any clearer? M23 Edited February 20, 2013 by Melba23 Fixed url Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Kyan Posted February 21, 2013 Author Posted February 21, 2013 DiOgO, As I explained, the Regex looks ahead and behind to see if there is the other part of a @CRLF - in which case it does nothing. Let me try and explain: Follow the numbers in order (?<!\x0d) - 2 - Look behind (the ?>! part) and make sure it is NOT preceded by @CR (0x0D) \x0a - 1 - Look for @LF (which is 0x0A) then | - 3 - Or \x0d - 4 - We look for @CR and then (?!\x0a) - 5 - Look ahead (?!) and make sure it is NOT followed by @LF The parts in () are non-capturing negative lookbehind/lookahead - and are well explained in my favourite Regex tutorial at http://www.regular-expressions.info/tutorial.html. The whole thing needs to be in () so that it is a capturing group for the SRER to replace. Any clearer? M23 got it, anyone with doubts check this link http://www.regular-expressions.info/quickstart.html (at the bottom page..."Lookaround") thanks Melba23, to ask something about sql/timestamps, should I create another thread? Heroes, there is no such thing One day I'll discover what IE.au3 has of special for so many users using it.C'mon there's InetRead and WinHTTP, way better
jchd Posted February 22, 2013 Posted February 22, 2013 Yes please new topic = new thread This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
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