I am having a problem with the following line of code:
The variable "line" is not null and has a string about 40 characters long but the , is NOT in that string.
I find that the function "bombs out" - i.e. does not continue - when that line is hit.
I know that Split() is a javascript string function but I would have thought it would have survived a call where the token was not in the string?
Any idea how to work with this use case?
Code:
var splitTest = line.Split(",");
I find that the function "bombs out" - i.e. does not continue - when that line is hit.
I know that Split() is a javascript string function but I would have thought it would have survived a call where the token was not in the string?
Any idea how to work with this use case?
Comment