The code lines
1) in skipchar():
While index > 0 And index <= Len(str) And InStr(vbCr & vbLf & vbTab & " ",
Mid(str, index, 1))
and
2) If InStr(vbCrLf & vbCr & vbLf & vbTab & " ", char) Then
The first vbCrLf &
is redundant as it duplicates vbCr & vbLf
AND char is only one character anyway.
(Thanks for fix to parsenumber btw)
Original issue reported on code.google.com by OBeirne....@gmail.com on 28 Mar 2014 at 2:41
Original issue reported on code.google.com by
OBeirne....@gmail.com
on 28 Mar 2014 at 2:41