Hello,
i'm creating a gui to create a Dosdrivers but if i use Echo command from system i can't add (" ") to the file created.
I've placed (' ') instead of (" ") and now i would like to replace (' ') by (" ").
sorry, i didn't manipulate files...
Thanks for your help.
Replace caracters in a file
Re: Replace caracters in a file
you have to read manual a little bit more, and experiment with examples 
in hollywood in order to add quotes and double quotes to a string, which later will be written to a file you have to use \"
exactly as explained in manual ->https://www.hollywood-mal.com/docs/html ... tring.html
in hollywood in order to add quotes and double quotes to a string, which later will be written to a file you have to use \"
exactly as explained in manual ->https://www.hollywood-mal.com/docs/html ... tring.html
; this will print Hello, "Mr. John Doe"!
DebugPrint("Hello, \"Mr. John Doe\"!")
Christos
- Juan Carlos
- Posts: 933
- Joined: Mon Sep 06, 2010 1:02 pm
Re: Replace caracters in a file
Thank you I don't remember this trick to use the " " without problems with the instruction. 
Re: Replace caracters in a file
Thanks a lot plouf!