Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

vito/go-parse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

21 Commits

Repository files navigation

Go Parse

A Parsec-like library for Go.

Structure:

A Vessel is what carries around the input and any user-specified state, as well as internal state such as the position in the input. It should know how to return and set those 3 values, as well as Get from the input, and push/pop (which just adjusts the position).

A Parser takes a Vessel and returns an Output and whether or not the parse was successful.

Parsers can typically be combined in many ways. For example Symbol is just String followed by Whitespace, Many takes a Parser and repeatedly applies it, matching 0 or more times (thus, the parse is always successful), and Any takes any number of Parsers and tries them all in order until one succeeds.

Example:

func main() {
 in := new(StringVessel);
 in.SetInput(`< (>)(
<
)( >) < >
>
 >`);
 ltgt := Any(Symbol("<"), Symbol(">"));
 parser := Many(Any(ltgt, Parens(ltgt)));
 out, parsed := parser(in);
 fmt.Printf("Matched: %#v\n", parsed);
 fmt.Printf("Matches: %v\n", out);
 fmt.Printf("Vessel: %+v\n", in);
}

Output:

go-parse $ go parsec
Matched: true
Matches: [< > < > < > > >]
Vessel: &{state:<nil> input:< (>)(
<
)( >) < >
>
 > position:{Name: Line:0 Column:0 Offset:29}}

About

A Parsec-like parsing library for Go.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

Languages

AltStyle によって変換されたページ (->オリジナル) /