Giter Site home page Giter Site logo

seg.go's Introduction

Seg

Segment matcher for paths.

Description

Seg provides two methods for consuming and capturing path segments. A path is a string that starts with a slash and contains segments separated by slashes, for example /foo/bar/baz or /users/42.

Usage

Consider the following example:

s := seg.New("/posts/42")

s.Prev()
// ""
s.Curr()
// "/posts/42"

s.Consume("posts")
// true

s.Prev()
// "/posts"

s.Curr()
// "/42"

s.Consume("42")
// true

s.Prev() 
// "/posts/42"
s.Curr()
// ""

The previous example shows how to walk the path by providing segments to consume. In the following example, we'll see what happens when we try to consume a segment with a string that doesn't match:

s := seg.New("/posts/42")

s.Prev()
// ""
s.Curr()
// "/posts/42"

s.Consume("admin")
// false

s.Prev()
// ""

s.Curr()
// "/users/42"

As you can see, the command fails and the Prev() and Curr() strings are not altered. Now we'll see how to capture segment values:

s := seg.New("/users/42")

captures := make(map[string]string)

s.Prev()
// ""

s.Curr()
// "/users/42"

s.Capture("foo", captures)
// true

s.Prev()
// "/users"

s.Curr()
// "/42"

s.Capture("bar", captures)
// true

s.Prev()
// "/users/42"

s.Curr()
// ""

captures
// map[foo:users bar:42]

Installation

Install it using the "go get" command:

go get github.com/soveran/seg.go

seg.go's People

Contributors

soveran avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.