[Gambas-user] Enclose strings between " char

Frank Berg frankberg at ...390...
Wed Mar 30 20:50:43 CEST 2005


>I need to create a string that is enclosed between the " char. Example,
> /home/user/file_name.asm
> has to become
> 
> "home/user/file_name.asm"
> 
> How could I solve the problem?
> Francesco
hi,
try

button1.text = chr(34) & "home/user/file_name.asm" & chr(34)

frank






More information about the User mailing list