How to remove HTML tags from a string using VBscript? Is any feature available?
If the line contains only simple basic HTML, and you are sure that the text will never contain < or > , you can simply skip the text and use InStr to find all < and > and use Mid to save all the text that is not between them .
<
>
InStr
Mid
Otherwise, this CodeProject article contains a function that should do it better in the section called Fourth Option - Another VBScript Attempt , However, the article does not mention any license information that might be a problem for you.
Source: https://habr.com/ru/post/1380136/More articles:How do interfaces in Java get an Object class method? - javaHow to install the Linux kernel not to send RST_ACK so that I can give SYN_ACK in the raw socket - linuxHexa Base Digit and C # Decimal Base Digit - c #Linux programming issue raw socket - linuxHow to correctly reproduce the three-way handshake of the TCP protocol with raw sockets? - c ++iCloud - File Transfer Complete - iosTCP ACK spoofing - tcpWhy can't I refer to a type through an expression? - enumsFunctionality code in a bad practice event handler? - c #Is it possible to set const using user input? - cAll Articles