regexp

package
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2024 License: BSD-3-Clause Imports: 14 Imported by: 0

Documentation

Overview

Package regexp implements regular expression search tuned for use in grep-like programs.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Grep

type Grep struct {
	Regexp *Regexp   // regexp to search for
	Stdout io.Writer // output target
	Stderr io.Writer // error target

	L bool // L flag - print file names only
	C bool // C flag - print count of matches
	N bool // N flag - print line numbers
	H bool // H flag - do not print file names
	V bool // V flag - print non-matching lines (only for cgrep, not csearch)

	HTML    bool // emit HTML output for csweb
	Match   bool // were any matches found?
	Matches int  // how many matches were found?
	Limit   int  // stop after this many matches
	Limited bool // stopped because of limit

	PreContext  int // number of lines to print after
	PostContext int // number of lines to print before
	// contains filtered or unexported fields
}

TODO:

func (*Grep) AddFlags

func (g *Grep) AddFlags()

func (*Grep) AddVFlag

func (g *Grep) AddVFlag()

func (*Grep) File

func (g *Grep) File(name string)

func (*Grep) Reader

func (g *Grep) Reader(r io.Reader, name string)

type Regexp

type Regexp struct {
	Syntax *syntax.Regexp
	// contains filtered or unexported fields
}

Regexp is the representation of a compiled regular expression. A Regexp is NOT SAFE for concurrent use by multiple goroutines.

func Compile

func Compile(expr string) (*Regexp, error)

Compile parses a regular expression and returns, if successful, a Regexp object that can be used to match against lines of text.

func (*Regexp) Match

func (r *Regexp) Match(b []byte, beginText, endText bool) (end int)

func (*Regexp) MatchString

func (r *Regexp) MatchString(s string, beginText, endText bool) (end int)

func (*Regexp) String

func (re *Regexp) String() string

String returns the source text used to compile the regular expression.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL