legend Posted February 4, 2016 Posted February 4, 2016 $stringreverse = Execute(BinaryToString("0x537472696E6752657665727365")) $reversestring($stringreverse("test")) MsgBox("","",$reversestring) Hello, I converted the command "stringreverse to binary. so instead of doing: stringreverse("text") I'm using it in the above $stringreverse. The thing is, I would like to use it the same way as stringreverse (just 1 line), but I don't think it's possible? what I imagine is something like: Execute(BinaryToString("0x537472696E6752657665727365"("test")) I know the above is completely wrong, but I'm not sure if it even can be done?
iamtheky Posted February 4, 2016 Posted February 4, 2016 msgbox(0, '' , Execute(BinaryToString("0x537472696E6752657665727365") & "('Test')")) ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
legend Posted February 4, 2016 Author Posted February 4, 2016 Thank's mate, Just what I needed, gives sense
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