alvinjones
Technical User
I have a text variable which contains the following string
"<html xmlns=" /><body xmlns=" Develop and deliver into production a Pilot Claims Status Enquiry using Seagull Software</p></body></html>" I need to remove any text contained within the < > characters. I have tried using the Replace function with a wildcard but it does not remove them.
this is what I have tried
strcheck = "<html xmlns=" /><body xmlns=" Develop and deliver into production a Pilot Claims Status Enquiry using Seagull Software</p></body></html>"
strcheck = Replace(strcheck, "<*>", "")
What am I doing wrong?
"<html xmlns=" /><body xmlns=" Develop and deliver into production a Pilot Claims Status Enquiry using Seagull Software</p></body></html>" I need to remove any text contained within the < > characters. I have tried using the Replace function with a wildcard but it does not remove them.
this is what I have tried
strcheck = "<html xmlns=" /><body xmlns=" Develop and deliver into production a Pilot Claims Status Enquiry using Seagull Software</p></body></html>"
strcheck = Replace(strcheck, "<*>", "")
What am I doing wrong?