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
In INI file parsing, spaces before and after the = seem to get in the way of parsing values.
For example Key=value works but Key = value doesn't.
I think it would be fine to check the characters (since there can be multiple spaces or tabs) before the = and, if they exist, assume there are spaces or tabs before the value text begins.
The text was updated successfully, but these errors were encountered:
In INI file parsing, spaces before and after the
=
seem to get in the way of parsing values.For example
Key=value
works butKey = value
doesn't.I think it would be fine to check the characters (since there can be multiple spaces or tabs) before the
=
and, if they exist, assume there are spaces or tabs before the value text begins.The text was updated successfully, but these errors were encountered: