You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to have multiple characters for a delimiter? I ask cause I have a case with spaces and scientific notation like,
" 48.93, -81.14, 0.18E+03"
So I can get the first two with numeric parsing but the last one fails because I need that "E".
The text was updated successfully, but these errors were encountered:
Oh they do, but they also ignore the exponential which makes the third column unreadable. With numeric parsing it would return "0.1803" instead of "180". With double parsing it would return a problem with the leading space.
Would it be possible to have multiple characters for a delimiter? I ask cause I have a case with spaces and scientific notation like,
" 48.93, -81.14, 0.18E+03"
So I can get the first two with numeric parsing but the last one fails because I need that "E".
The text was updated successfully, but these errors were encountered: