vote up 0 vote down star

i have a string that looks like this

"Patient Name, Doc Name, Patient ID, something else"

i want to extract each one of these and put it in a variable. such that var1 will equal "Patient Name" var2 will equal "Doc name" etc.. using instr and mid. what is the best way to do it?

flag

Is this VB.NET or VBA? – Buggabill Oct 23 at 17:45
The "best use of Mid and Instr in vb.net" is NONE. Don't use them. EVER. Use .Substring(), .IndexOf(), and their kin instead. – Joel Coehoorn Oct 23 at 17:53
the thing is i dont think i will switch because i'm so used to mid and instr and they are simple to use! – IIIIIIIIIIllllIlIlIlIlllllllII Oct 25 at 2:17
Joel is correct. You will get a performance hit for using mid & instr – Christian Payne Oct 26 at 2:51
christian, not really so much. there arent too many programs written in vb.net that make such great use of mid and instr that it would make any difference – IIIIIIIIIIllllIlIlIlIlllllllII Oct 26 at 22:54

2 Answers

vote up 7 vote down check

The best way to do it is using the Split function - here's some vba code to do it:

Dim txt as String = "Patient Name, Doc Name, Patient ID, something else"
Dim x as Variant
Dim i as Long

x = Split(txt, ",")
For i = 0 To UBound(x)
   Debug.Print x(i)
Next i

And in VB.Net:

Dim txt as String = "Patient Name, Doc Name, Patient ID, something else"
Dim split As String() = txt.Split(",")
    For Each s As String In  split
        If s.Trim() <> "" Then
            Console.WriteLine(s)
        End If
    Next s
link|flag
1  
+1 for the answer in both... :-) – Buggabill Oct 23 at 17:47
vote up 1 vote down

You should consider using the string methods that are part of the .NET framework instead of the legacy VB functions.

String.Split() will get you 99% of the way to what you want.

link|flag
cool how do i use that? – IIIIIIIIIIllllIlIlIlIlllllllII Oct 23 at 17:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.