dbTalk Databases Forums  

Double Quotes in Strings

comp.databases.paradox comp.databases.paradox


Discuss Double Quotes in Strings in the comp.databases.paradox forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Michael.Ruehling@t-online.de
 
Posts: n/a

Default Double Quotes in Strings - 07-07-2008 , 12:16 AM






Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.


Reply With Quote
  #2  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM






Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #3  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM



Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #4  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM



Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #5  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM



Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #6  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM



Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #7  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM



Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #8  
Old   
SimonW
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 02:13 AM



Michael.Ruehling (AT) t-online (DOT) de wrote:
Quote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.

Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "

Simon


Reply With Quote
  #9  
Old   
Bill McCray
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 09:16 AM



On Mon, 07 Jul 2008 08:13:11 +0100, SimonW <Simon (AT) nospam (DOT) co.uk> wrote:

Quote:
Michael.Ruehling (AT) t-online (DOT) de wrote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.


Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "
That doesn't look right. This is what I think it should be

"<!DOCTYPE FILME SYSTEM \"FILME.DTD\"> "

Bill

----------------------------------------------------------------
Reverse parts of the user name and ISP name for my e-address


Reply With Quote
  #10  
Old   
Bill McCray
 
Posts: n/a

Default Re: Double Quotes in Strings - 07-07-2008 , 09:16 AM



On Mon, 07 Jul 2008 08:13:11 +0100, SimonW <Simon (AT) nospam (DOT) co.uk> wrote:

Quote:
Michael.Ruehling (AT) t-online (DOT) de wrote:
Hi,
I am trying to declare some String-Constants. One of them
HAS TO include a double-quoted String. How do I do this?


e.g.:
var SomeStr String
endvar

method pushButton
SomeStr = "<!DOCTYPE FILME SYSTEM "FILME.DTD"> "
endMethod

According to the XML-Specs the Sequence FILME.DTD HAS TO BE
in double quotes. Are there any tricks to do so? Special Chars,
Escape-Sequences or something like that?


M.


Try:-

"<!DOCTYPE FILME SYSTEM "\"FILME.DTD\""> "
That doesn't look right. This is what I think it should be

"<!DOCTYPE FILME SYSTEM \"FILME.DTD\"> "

Bill

----------------------------------------------------------------
Reverse parts of the user name and ISP name for my e-address


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.