Jump to content

Recommended Posts

Posted (edited)

I have tried everything i can think of, and ive looked thru the help but i dont really know where to look.

Anyways, im trying to write the following to a text file

someone "[variable goes here]"

But I cant get the quotes to write!

Im using FileWriteLine

FileWriteLine (@ScriptDir&"\out.txt", "someone ""&$var&""" )

;the error is here  ---------------------------^  ------^
;because there is an unclosed quote

How can I get FileWriteLine to write out the quote?

Edited by deltaepsylon
  • Developers
Posted (edited)

FileWriteLine (@ScriptDir&"\out.txt", "someone """ & $var & """" )

-or -

FileWriteLine (@ScriptDir&"\out.txt", 'someone "' & $var & '"' )

Edited by JdeB

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.
  :)

Posted

I have tried everything i can think of, and ive looked thru the help but i dont really know where to look.

Anyways, im trying to write the following to a text file

someone "[variable goes here]"

But I cant get the quotes to write!

Im using FileWriteLine

FileWriteLine (@ScriptDir&"\out.txt", "someone ""&$var&""" )

;the error is here  ---------------------------^  ------^
;because there is an unclosed quote

How can I get FileWriteLine to write out the quote?

Check FAQ #7.
Posted (edited)

FileWriteLine (@ScriptDir&"\out.txt", "someone """ & $var & """" )

-or -

FileWriteLine (@ScriptDir&"\out.txt", 'someone "' & $var & '"' )

That gave me the error "Unterminated String"

Edit: The first one err'd, the second one worked perfectly. Thanks!

Edited by deltaepsylon

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...