i have a string that looks like this:
287/2019\t25,89\t21,05\tMatt
i would like to split it on tab character, so i can access 25,89.
try below one:
str = “287/2019\t25,89\t21,05\tMatt”
reqStr = str.split(“\t”.ToCharArray)(1)
No luck, i get empty string.
Split(string,“\t”) the output of this is arritems, use for each and print all the items and see which index has 25,89.
I think first index has some space.
Hi lakshman:
Can you please help me out with the below string data
“25 2019 123 456 #”
I would like to split the data, so i can access 123.
REgards,
Suds
Thanks for your quick response. Its not a space in each value, but its a tab space in each value. Can you please enter the tab space in each value and find out the value of 123.
Screenshot for your reference.
Thanks,
Suds
It works. Thanks for your help…
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.