ParserCombinator.jl icon indicating copy to clipboard operation
ParserCombinator.jl copied to clipboard

A parser combinator library for Julia

Results 13 ParserCombinator.jl issues
Sort by recently updated
recently updated
newest added

I want to extract information from GCN NASA website. Can ParserCombinator.jl be of help in my problem. Please see discourse: https://discourse.julialang.org/t/web-scraping-of-gcn-nasa-circulars-text/100809

consider the following program ```dot s = """ digraph "g" { } """ ast = DOT.parse_dot(s)[1] s = """ digraph g { } """ ast = DOT.parse_dot(s)[1] ``` their `id`...

This parser fails to parse the following dot program, it is an example from https://graphviz.org/Gallery/directed/datastruct.html ```dot digraph g { fontname="Helvetica,Arial,sans-serif" node [fontname="Helvetica,Arial,sans-serif"] edge [fontname="Helvetica,Arial,sans-serif"] graph [ rankdir = "LR" ];...

Hi - I was wondering if this project is alive or has been abandoned? I wanted to try to use a combinator-based parser in julia and found this one. However,...

I have a GML file that has underscores in key names: ``` graph [ directed 1 id 42 label "splice graph of s-exons" node [ id 1 label "start" conservation...

Ok this is building on #26 and #21 I'm not saying this is the prettiest code, but it passes all tests. In a few places I got rid of inner...

Hello and thank you for this great library. I'm trying to parse a language with fat arrow funcdefs as in: ``` a() => 1 ``` However, they are never begin...

https://travis-ci.org/JuliaGraphs/LightGraphs.jl/builds/225059949#L431-L456

This is probably a big job, but: ``` WARNING: produce is now deprecated. Use Channels for inter-task communication. Stacktrace: [1] depwarn(::String, ::Symbol) at ./deprecated.jl:64 [2] produce(::Array{Any,1}) at ./deprecated.jl:884 [3] #producer#27(::Bool,...