parse is for parsing Julia code, which this isn't. You should use regular expressions to pull out substrings and then parse them with specific parse(Int, str) methods.
On Thu, Nov 19, 2015 at 9:46 AM, Ján Adamčák <[email protected]> wrote: > Hi guys, > > I tried a parse specific config file with this syntax: > > param#value > > for this case > > parse("R#10") > > but parse returned me only :R > > How I can parse this string(file), when I can parse it like > value, operator, value? :(R # 10) ? > > Thanks for your help. >
