-
Notifications
You must be signed in to change notification settings - Fork 204
x = 'foo' x = 'bar' parsing #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I think it needs to be: ServerPackages[]=Core This is the way ini's arrays seem to work |
Yeah, it would be great but the .ini file is provided by other application, I know it's dumb to assign multiple values to the same "variable", if I do name[] = value1 name[] = value2 app isn't working. |
I would suggest some sort of middle parser... Something that would read the input add the [] and then pass it to the parser. None the less probably not a problem with this library. |
Can you reccommend such middle parser ? Or I should do it by hand like string.replace('ServerPackages','ServerPackages[]') ? |
I have same problem ... |
Duplicate of #52 (Technically #52 is a duplicate of this, but that's more clearly stated, and probably @robertkowalski will give you what you want :) |
see here: #52 (comment) |
Hello, in my .ini file I have
ServerPackages=Core
ServerPackages=Engine
....
After parsing it leaves only 1 ServerPackages line, how this can be fixed ?
The text was updated successfully, but these errors were encountered: