Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
vb6 help HTML Remove
Name: gorf Date: July 9, 2003 at 23:53:22 Pacific OS: winxp CPU/Ram: 2600+ / 512mb pc3200
I'm not entirely sure on what you are asking here. But if you are trying to remove HTML tags from a text file then look into the substr function... It allows you to substitute what you want for what you have... in this case, substituting a blank/nothing in place of HTML tags.
Infinite Recursion
0
Response Number 3
Name: gorf Date: July 10, 2003 at 01:45:49 Pacific
Reply:
x = Replace(x, "{HTML}", "") replace everthing in the tag
0
Response Number 4
Name: gorf Date: July 10, 2003 at 02:46:05 Pacific
You could have a new string (strKeywords) that has the HTML tag that you specify removed from txtKeywords.Text. Perhaps if you put this in a loop for all tags, or run it through an array of tags for comparisons, etc.. it would reduce the workload. However, I don't know enough about the Replace command to know if it is possible to utilize regular expressions within it... I would air on the side of it not being possible. Although, I looked on the Net for something that may be able to help you and came across something of interest, I did not read much of it. But it is a String Replacements Class within a Entisoft Tools 2.0 Object Library. It may have something in there that could help you remove your tags... otherwise, I would loop through with the VB Replace function and compare against an array of known tags.
Summary: Hi, Can anyone tells me how to turn off the modem's speaker using VB6? I want to use the MSComControl to make a phone call out, using VB6 code. However, I don't want to hear the modem's speaker as th...
Summary: Create a screen saver that takes a line and moves it around the screen, by modifying the values of the Properties that define the two endpoints (X1, Y1, X2, and Y2). The line should start in a random ...