legend Posted November 8, 2012 Posted November 8, 2012 Hi this code uses stringtobinary just fine with the msgbox, but won't write the binary numbers to my txt file (kb.txt) $read = FileRead(@scriptdir & "\test.txt") $file = (@ScriptDir & "\kb.txt") $buffer = StringToBinary($read) MsgBox(4096, "String() representation" , $buffer) FileWrite($file, $buffer) someone knows why?
Danp2 Posted November 8, 2012 Posted November 8, 2012 (edited) Does it work if you change the last line to: FileWrite(@ScriptDir & "kb.txt", $buffer) Edited November 8, 2012 by DanP2 Latest Webdriver UDF Release Webdriver Wiki FAQs
legend Posted November 8, 2012 Author Posted November 8, 2012 No, it writes The content from test.txt to kb.txt but stringtobinary, does not have any effect ón it
jchd Posted November 8, 2012 Posted November 8, 2012 (edited) Of course it's a no-op in this case: you're writing exactly the same content that you just read. Make $buffer a string before final write: FileWrite($file, $buffer & '') Something to take care of: your output file will have the '0x' prefix prepended, which you may want to remove before writing: FileWrite($file, StringTrimLeft($buffer & '', 2)) EDIT: also take care of selecting the character encoding that will suit your use! Edited November 8, 2012 by jchd 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)
legend Posted November 8, 2012 Author Posted November 8, 2012 thanks alot next question, how would I make space between every second character ex: E6 F6 34
jchd Posted November 8, 2012 Posted November 8, 2012 Something like: FileWrite($file, StringRegExpReplace($buffer & '', '(?:0x)?([[:xdigit:]]{2})', '1 ')) 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)
legend Posted November 8, 2012 Author Posted November 8, 2012 (edited) thanks with this: $read = FileRead(@scriptdir & "test.txt") $file = (@ScriptDir & "kb.txt") $buffer = StringToBinary($read) [code]$read = FileRead(@scriptdir & "test.txt") $file = (@ScriptDir & "kb.txt") $buffer = StringToBinary($read) FileWrite($file, StringTrimLeft($buffer & '', 2)) how would i get it back to normal? I tried to do BinaryToString, instead of StringToBinary Edited November 8, 2012 by legend
jchd Posted November 8, 2012 Posted November 8, 2012 Back to normal? What do you revert back to "normal"? 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)
kylomas Posted November 8, 2012 Posted November 8, 2012 legend, Your source file "test.txt" is still there, yes? Is that what you mean by "back to normal"? kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
legend Posted November 8, 2012 Author Posted November 8, 2012 (edited) $read = FileRead(@scriptdir & "test.txt") $file = (@ScriptDir & "encrypt.txt") $buffer = StringToBinary($read) FileWrite($file, StringTrimLeft($buffer & '', 2)) $read = FileRead(@scriptdir & "encrypt.txt") $file = (@ScriptDir & "decrypt.txt") $buffer = BinaryToString($read) FileWrite($file, StringTrimLeft($buffer & '', 2)) that's what i'm trying to do Edited November 8, 2012 by legend
kylomas Posted November 8, 2012 Posted November 8, 2012 (edited) legend, If you are looking for encryp/decrypt routines, there are UDF's for that. kylomas Edited November 8, 2012 by kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
legend Posted November 8, 2012 Author Posted November 8, 2012 I know but in this case I just need something simple as binarytostring and stringtobinary ^^
jchd Posted November 9, 2012 Posted November 9, 2012 Have you looked at _StringToHex and _HexToString in the help file? 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