Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Driving Me Crazy
Message
From
19/02/2003 02:45:37
 
 
To
24/01/2003 03:25:27
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00744986
Message ID:
00754821
Views:
20
May be a bit late but I would do it something like this:

lb = "start"
rb = "end"
StrString = a
intStartPos = 0
intEndPos = 0
lastPos = 1

Do While lastPos < Len(StrString)
intStartPos = InStr(lastPos, StrString, lb)
intEndPos = InStr(lastPos, StrString, rb)

Response.Write Mid(StrString , lbStrPosition, StrEnd)
lastPos = intEndPos + 3
Loop

I didn't test the code but it should work.

Greetings Maurits
Previous
Reply
Map
View

Click here to load this message in the networking platform