MasonMill Posted July 28, 2014 Posted July 28, 2014 If I want to concatenate strings for a tab delimited file how would I do so? It doesn't like FileWrite($FILE,$String1 & Send("{TAB}") & $String2 & Send("{TAB}") & $String3 & @CRLF) What is the procedure for something like this? Thanks, Mason
hiimjoey11 Posted July 28, 2014 Posted July 28, 2014 Try something like this: FileWrite($FILE,$String1 & "{TAB}" & $String2 & "{TAB}" & $String3 & @CRLF)
Developers Jos Posted July 28, 2014 Developers Posted July 28, 2014 .. or: FileWriteLine($FILE,$String1 & @TAB & $String2 & @TAB & $String3) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
hiimjoey11 Posted July 28, 2014 Posted July 28, 2014 ... or: FileWrite($FILE,$String1 & @TAB & $String2 & "{TAB}" & $String3)
MasonMill Posted July 28, 2014 Author Posted July 28, 2014 "{TAB}" seemed to just write {TAB} in the file but @TAB worked. Thanks guys for the help!
somdcomputerguy Posted July 28, 2014 Posted July 28, 2014 "{TAB}" seemed to just write {TAB} in the file but @TAB worked. Thanks guys for the help!You might want to take a look in the Macro's section of the Help file. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
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