ReverseRegexes.jl

Adds functionality to reverse-search strings with regexes
Popularity
0 Stars
Updated Last
10 Years Ago
Started In
April 2014

ReverseRegexes

Build Status

Quick example:

julia> using ReverseRegexes

julia> rr"\b(using|import)\s+\w+\b" # example of reverse-regex
ReverseRegex(r"\b\w+\s+(gnisu|tropmi)\b")

julia> rsearch("Foo bar baz", rr"ba[rz]")
9:11