Skip to main content

Is it possible to include " in the variable of Uniface ?

Author: lalitpct@gmail.com (lalitpct)

 

  Is it possible to include “ in the variable of Uniface
For eg
Subject =” ”Release to UAT” “
 
How to take double quote in the variable ,uniface version is 8.4

Is it possible to include " in the variable of Uniface ?

Author: lalitpct@gmail.com (lalitpct)

 

  Is it possible to include “ in the variable of Uniface
For eg
Subject =” ”Release to UAT” “
 
How to take double quote in the variable ,uniface version is 8.4

You can do that as follows:

Subject =” %%”%%%Release to UAT%%”%%% “

 


Author: jonnyc808 (jonnyc808@hotmail.com)

Is it possible to include " in the variable of Uniface ?

Author: lalitpct@gmail.com (lalitpct)

 

  Is it possible to include “ in the variable of Uniface
For eg
Subject =” ”Release to UAT” “
 
How to take double quote in the variable ,uniface version is 8.4


You can do that as follows:

Subject =” %%”%%%Release to UAT%%”%%% “



Or just by :-)

Subject =" %%"Release to UAT%%" "


If you want to insert the percent sign it's a litte bit more tricky

One way I do somestime is

;Defined 'anywhere' in the code
$PRC_SIGN$ ="%"
$DPRC_SIGN$="%%$PRC_SIGN$%%$PRC_SIGN$"

;Use
Subject =" This is a percent sign %%?%%$PRC_SIGN$%%" and this are two %%"%%$DPRC_SIGN$%%" "


If you need a line break (new line), one can use this escape sequence

Subject ="First line %%^Second line"


Regards Ingo


Author: istiller (i2stiller@gmx.de)

Is it possible to include " in the variable of Uniface ?

Author: lalitpct@gmail.com (lalitpct)

 

  Is it possible to include “ in the variable of Uniface
For eg
Subject =” ”Release to UAT” “
 
How to take double quote in the variable ,uniface version is 8.4

Thanks a lot it works , this forum rocks


Author: lalitpct (lalitpct@gmail.com)

Is it possible to include " in the variable of Uniface ?

Author: lalitpct@gmail.com (lalitpct)

 

  Is it possible to include “ in the variable of Uniface
For eg
Subject =” ”Release to UAT” “
 
How to take double quote in the variable ,uniface version is 8.4

What about a look into the uniface online help (or quick reference guide)


Author: ulrich-merkel (ulrichmerkel@web.de)