Unescape HTML SYMBOLS

G

Guest

Hi
ãÒÝÅ Û ÓÆÔ Unescape HTML symbols.
I have string str=" <" and I should receive str=">"
How it to make?
 
C

Cindy M -WordMVP-

Unescape HTML symbols.
I have string str=" <" and I should receive str=">"
You can use the REPLACE function if this is Word 2000 (VB6)
or later:

Replace("test&lt;test", "&lt;", "<")

Result: test<test

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update
Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any
follow question or reply in the newsgroup and not by e-mail
:)
 
Top