Página 1 de 1

String Expression

Publicado: Mié May 13, 2009 9:22 am
por Xailer
Hello to all
How can i expess the following literal into string :
<A HREF="http://www.codejock.com">Hyperlink Text</A>
TIA
DIONISIS

String Expression

Publicado: Mié May 13, 2009 9:38 am
por ignacio
Dionisis,
cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
Regards
--
Ignacio Ortiz de Zúñiga
Xailer support / Soporte de Xailer
http://www.xailer.com
http://www.xailer.info
"Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Hello to all
>
> How can i expess the following literal into string :
>
> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>
> TIA
> DIONISIS
>
>

String Expression

Publicado: Mié May 13, 2009 9:38 am
por ignacio
Dionisis,
cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
Regards
--
Ignacio Ortiz de Zúñiga
Xailer support / Soporte de Xailer
http://www.xailer.com
http://www.xailer.info
"Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Hello to all
>
> How can i expess the following literal into string :
>
> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>
> TIA
> DIONISIS
>
>

String Expression

Publicado: Mié May 13, 2009 9:56 am
por Ron Broere
ctest := "<A HREF=" + '"' + "http://www.codejock.com" + '"' + ">Hyperlink
Text</A>"
msgbox( ctest)
// the '"' is a single quote. then a double quote, then a single quote
Ronald
"Dionisis Divaris" <info@sgs-soft.gr> wrote in message
news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Hello to all
>
> How can i expess the following literal into string :
>
> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>
> TIA
> DIONISIS
>

String Expression

Publicado: Mié May 13, 2009 9:56 am
por Ron Broere
ctest := "<A HREF=" + '"' + "http://www.codejock.com" + '"' + ">Hyperlink
Text</A>"
msgbox( ctest)
// the '"' is a single quote. then a double quote, then a single quote
Ronald
"Dionisis Divaris" <info@sgs-soft.gr> wrote in message
news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Hello to all
>
> How can i expess the following literal into string :
>
> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>
> TIA
> DIONISIS
>

String Expression

Publicado: Mié May 13, 2009 10:03 am
por Ron Broere
Hi Ignacio,
What is the E for in cVar := E"<A blabla?
Can I do regular expressions that way?
Ronald
"Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
news:[email=4a0a790e@svctag-j7w3v3j....]4a0a790e@svctag-j7w3v3j....[/email]
> Dionisis,
>
> cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
>
> Regards
>
>
> --
> Ignacio Ortiz de Zúñiga
> Xailer support / Soporte de Xailer
> http://www.xailer.com
> http://www.xailer.info
> "Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
> news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>> Hello to all
>>
>> How can i expess the following literal into string :
>>
>> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>>
>> TIA
>> DIONISIS
>>
>>
>
>

String Expression

Publicado: Mié May 13, 2009 10:03 am
por Ron Broere
Hi Ignacio,
What is the E for in cVar := E"<A blabla?
Can I do regular expressions that way?
Ronald
"Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
news:[email=4a0a790e@svctag-j7w3v3j....]4a0a790e@svctag-j7w3v3j....[/email]
> Dionisis,
>
> cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
>
> Regards
>
>
> --
> Ignacio Ortiz de Zúñiga
> Xailer support / Soporte de Xailer
> http://www.xailer.com
> http://www.xailer.info
> "Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
> news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>> Hello to all
>>
>> How can i expess the following literal into string :
>>
>> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>>
>> TIA
>> DIONISIS
>>
>>
>
>

String Expression

Publicado: Mié May 13, 2009 10:10 am
por ignacio
Ron,
Take a look at the file attached.
Regards,
--
Ignacio Ortiz de Zúñiga
Xailer support / Soporte de Xailer
http://www.xailer.com
http://www.xailer.info
"Ron Broere" <ronbroere@bbkm.nl> escribió en el mensaje
news:4a0a7ee1$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Hi Ignacio,
>
> What is the E for in cVar := E"<A blabla?
> Can I do regular expressions that way?
>
> Ronald
>
> "Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
> news:[email=4a0a790e@svctag-j7w3v3j....]4a0a790e@svctag-j7w3v3j....[/email]
>> Dionisis,
>>
>> cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
>>
>> Regards
>>
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> Xailer support / Soporte de Xailer
>> http://www.xailer.com
>> http://www.xailer.info
>> "Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
>> news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>>> Hello to all
>>>
>>> How can i expess the following literal into string :
>>>
>>> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>>>
>>> TIA
>>> DIONISIS
>>>
>>>
>>
>>
>
>
>


Attached files xdiff.txt (20.1 KB)Â

String Expression

Publicado: Mié May 13, 2009 10:10 am
por ignacio
Ron,
Take a look at the file attached.
Regards,
--
Ignacio Ortiz de Zúñiga
Xailer support / Soporte de Xailer
http://www.xailer.com
http://www.xailer.info
"Ron Broere" <ronbroere@bbkm.nl> escribió en el mensaje
news:4a0a7ee1$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Hi Ignacio,
>
> What is the E for in cVar := E"<A blabla?
> Can I do regular expressions that way?
>
> Ronald
>
> "Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
> news:[email=4a0a790e@svctag-j7w3v3j....]4a0a790e@svctag-j7w3v3j....[/email]
>> Dionisis,
>>
>> cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
>>
>> Regards
>>
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> Xailer support / Soporte de Xailer
>> http://www.xailer.com
>> http://www.xailer.info
>> "Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
>> news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>>> Hello to all
>>>
>>> How can i expess the following literal into string :
>>>
>>> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>>>
>>> TIA
>>> DIONISIS
>>>
>>>
>>
>>
>
>
>


Attached files xdiff.txt (20.1 KB)Â

String Expression

Publicado: Mié May 13, 2009 10:24 am
por Ron Broere
thank you!
"Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
news:[email=4a0a806f@svctag-j7w3v3j....]4a0a806f@svctag-j7w3v3j....[/email]
> Ron,
>
> Take a look at the file attached.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> Xailer support / Soporte de Xailer
> http://www.xailer.com
> http://www.xailer.info
> "Ron Broere" <ronbroere@bbkm.nl> escribió en el mensaje
> news:4a0a7ee1$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>> Hi Ignacio,
>>
>> What is the E for in cVar := E"<A blabla?
>> Can I do regular expressions that way?
>>
>> Ronald
>>
>> "Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
>> news:[email=4a0a790e@svctag-j7w3v3j....]4a0a790e@svctag-j7w3v3j....[/email]
>>> Dionisis,
>>>
>>> cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
>>>
>>> Regards
>>>
>>>
>>> --
>>> Ignacio Ortiz de Zúñiga
>>> Xailer support / Soporte de Xailer
>>> http://www.xailer.com
>>> http://www.xailer.info
>>> "Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
>>> news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>>>> Hello to all
>>>>
>>>> How can i expess the following literal into string :
>>>>
>>>> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>>>>
>>>> TIA
>>>> DIONISIS
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>
>

String Expression

Publicado: Mié May 13, 2009 10:24 am
por Ron Broere
thank you!
"Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
news:[email=4a0a806f@svctag-j7w3v3j....]4a0a806f@svctag-j7w3v3j....[/email]
> Ron,
>
> Take a look at the file attached.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> Xailer support / Soporte de Xailer
> http://www.xailer.com
> http://www.xailer.info
> "Ron Broere" <ronbroere@bbkm.nl> escribió en el mensaje
> news:4a0a7ee1$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>> Hi Ignacio,
>>
>> What is the E for in cVar := E"<A blabla?
>> Can I do regular expressions that way?
>>
>> Ronald
>>
>> "Ignacio Ortiz de Zúñiga" <NoNameToAvoidSpam@xailer.com> wrote in message
>> news:[email=4a0a790e@svctag-j7w3v3j....]4a0a790e@svctag-j7w3v3j....[/email]
>>> Dionisis,
>>>
>>> cVar := E"<A HREF="http://www.codejock.com">Hyperlink Text</A>"
>>>
>>> Regards
>>>
>>>
>>> --
>>> Ignacio Ortiz de Zúñiga
>>> Xailer support / Soporte de Xailer
>>> http://www.xailer.com
>>> http://www.xailer.info
>>> "Dionisis Divaris" <info@sgs-soft.gr> escribió en el mensaje
>>> news:4a0a7519$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>>>> Hello to all
>>>>
>>>> How can i expess the following literal into string :
>>>>
>>>> <A HREF="http://www.codejock.com">Hyperlink Text</A>
>>>>
>>>> TIA
>>>> DIONISIS
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>
>

String Expression

Publicado: Mié May 13, 2009 6:37 pm
por Rene Flores
What about this ?:
'<A HREF="http://www.codejock.com">Hyperlink Text</A>'
Works for me.
Regards
Rene Flores
http://www.ciber-tec.com

String Expression

Publicado: Mié May 13, 2009 6:37 pm
por Rene Flores
What about this ?:
'<A HREF="http://www.codejock.com">Hyperlink Text</A>'
Works for me.
Regards
Rene Flores
http://www.ciber-tec.com

String Expression

Publicado: Jue May 14, 2009 9:56 am
por Xailer
Ignacio,Rene
Many thanks both answers work perfect. In a few days i hope, i am able to
present a demo with codejock ActiveX Suite Pro and Xailer.
"Rene Flores" <"rflores[nospam]"@ciber-tec.com> wrote in message
news:4a0af76c$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>
> What about this ?:
>
> '<A HREF="http://www.codejock.com">Hyperlink Text</A>'
>
> Works for me.
>
> Regards
>
> Rene Flores
> http://www.ciber-tec.com

String Expression

Publicado: Jue May 14, 2009 9:56 am
por Xailer
Ignacio,Rene
Many thanks both answers work perfect. In a few days i hope, i am able to
present a demo with codejock ActiveX Suite Pro and Xailer.
"Rene Flores" <"rflores[nospam]"@ciber-tec.com> wrote in message
news:4a0af76c$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
>
> What about this ?:
>
> '<A HREF="http://www.codejock.com">Hyperlink Text</A>'
>
> Works for me.
>
> Regards
>
> Rene Flores
> http://www.ciber-tec.com