Hi,
I have a string like "a_b_c_d". How do I get only c out of this string?
Thanks
Printable View
Hi,
I have a string like "a_b_c_d". How do I get only c out of this string?
Thanks
you could do something like this:
Code:Dim s As String = "a_b_c_d"
Dim result = s.Split("_")(2)
Console.WriteLine(result)
Thanks! This is what I finally did.