In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.

Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.

String Expression

Xailer professional forum in English
Responder
Xailer
Mensajes: 328
Registrado: Mar Dic 23, 2008 5:40 pm

String Expression

Mensaje 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
Dionisis Divaris
SGS-soft
Home Page :
Support at :support.sgs@gmail.com[/email]
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

String Expression

Mensaje 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
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

String Expression

Mensaje 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
>
>
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Ron Broere
Mensajes: 44
Registrado: Dom Abr 19, 2009 10:01 am

String Expression

Mensaje 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
>
Ron Broere
Mensajes: 44
Registrado: Dom Abr 19, 2009 10:01 am

String Expression

Mensaje 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
>
Ron Broere
Mensajes: 44
Registrado: Dom Abr 19, 2009 10:01 am

String Expression

Mensaje 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
>>
>>
>
>
Ron Broere
Mensajes: 44
Registrado: Dom Abr 19, 2009 10:01 am

String Expression

Mensaje 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
>>
>>
>
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

String Expression

Mensaje 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)Â
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9447
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

String Expression

Mensaje 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)Â
Ignacio Ortiz de Zúñiga
[OZ Software]
https://www.ozs.es
--
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Ron Broere
Mensajes: 44
Registrado: Dom Abr 19, 2009 10:01 am

String Expression

Mensaje 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
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>
>
Ron Broere
Mensajes: 44
Registrado: Dom Abr 19, 2009 10:01 am

String Expression

Mensaje 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
>>>>
>>>>
>>>
>>>
>>
>>
>>
>
>
>
Rene Flores
Mensajes: 620
Registrado: Jue Mar 23, 2006 2:39 am

String Expression

Mensaje 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
Rene Flores
Mensajes: 620
Registrado: Jue Mar 23, 2006 2:39 am

String Expression

Mensaje 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
Xailer
Mensajes: 328
Registrado: Mar Dic 23, 2008 5:40 pm

String Expression

Mensaje 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
Dionisis Divaris
SGS-soft
Home Page :
Support at :support.sgs@gmail.com[/email]
Xailer
Mensajes: 328
Registrado: Mar Dic 23, 2008 5:40 pm

String Expression

Mensaje 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
Dionisis Divaris
SGS-soft
Home Page :
Support at :support.sgs@gmail.com[/email]
Responder