Joe I'm pretty sure using Mid$ (even better MidB$) is faster than using Split, especially because the Delimiter parameter is a variant and variants are the slowest data types.
Fastest? Well I'd like to say it is as some people claim it to be, but anything is possible
Here it is:
An example of using this to grab NP on hand would be:
lblNP.Caption = GetStringBetween(HTML, "NP: <a id='npanchor' href=""/objects.phtml?type=inventory"">", "</a>")
PS: If you have to use quotation marks in your code, put two like how I did. Otherwise it not work.
Joe I'm pretty sure using Mid$ (even better MidB$) is faster than using Split, especially because the Delimiter parameter is a variant and variants are the slowest data types.