Equivalent C# String in APL

Using (or providing) Microsoft.NET Classes
Post Reply
User avatar
PGilbert
Posts: 440
Joined: Sun Dec 13, 2009 8:46 pm
Location: Montréal, Québec, Canada

Equivalent C# String in APL

Post by PGilbert »

I am trying to convert the following C# string in APL:

Code: Select all

"Task Dialogs support footers like <a href=\"http://www.ookii.org\">hyperlinks</a>."


I have tried the following but it does not work:

Code: Select all

'Task Dialogs support footers like <a href=\''http://www.ookii.org\''>hyperlinks</a>.'


Any help welcome.
User avatar
PGilbert
Posts: 440
Joined: Sun Dec 13, 2009 8:46 pm
Location: Montréal, Québec, Canada

Re: Equivalent C# String in APL

Post by PGilbert »

Found it ! The equivalent is:

Code: Select all

'Task Dialogs support footers like <a href="http://www.ookii.org">hyperlinks</a>.'
Post Reply