which delimeter to use while spliting String
Posted
by London
on Stack Overflow
See other posts from Stack Overflow
or by London
Published on 2010-06-06T12:47:19Z
Indexed on
2010/06/06
12:52 UTC
Read the original article
Hit count: 196
I need to split this line string in each line, I need to get the third word(film name) but as you see the delimeter is one big blank character in some cases its small like before the numbers at the end or its big as in front of numbers at front.
I tried using string split with(" ") regex, and also \t but get the out of the bounds error.
400115305 Lionel_Atwill The_Song_of_Songs_(1933_film) 7587
400115309 Brian_Aherne A_Night_to_Remember_(1943_film) 7952
Did anyone have the same problem?
© Stack Overflow or respective owner