Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Split

Status
Not open for further replies.

JackSkellington

Technical User
Jul 28, 2005
86
GB
I have the following code

strTest= Me.arrtest(x).ToString

I need to remove part of the Me.arrtest(x).ToString that begins with a "(" that doen't always occur at the same index.

Any ideas??
 
Try:

strTest = Me.arrtest(x).ToString.Substring(Me.arrtest(x).IndexOf("("))

=======================================
People think it must be fun to be a super genius, but they don't realize how hard it is to put up with all the idiots in the world. (Calvin from Calvin And Hobbs)

Robert L. Johnson III
CCNA, CCDA, MCSA, CNA, Net+, A+, CHDP
VB/Access Programmer
 
given the string:

"asdfasdfasdf(asdfasdfa)asdfasdf"

are you trying to remove everything before or after? or from say "(" to ")"?

Code:
Dim strTest As New String("asdfasdfasdf(asdfasdfa)asdfasdf")
'copies everything after the (
strTest = Mid(strTest, InStr(strTest, "(") + 1)
'copies everything up to the (
strTest = Mid(strTest, 1, InStr(strTest, "(") - 1)
'copies everything except what is between ( and )
strTest = Mid(strTest, 1, InStr(strTest, "(") - 1) + Mid(strTest, InStr(strTest, ")") + 1)

-The answer to your problem may not be the answer to your question.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top