Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.21 KB

regex.md

File metadata and controls

38 lines (33 loc) · 1.21 KB

regex

class regex.Match

Source: /home/runner/work/aspl/aspl/stdlib/regex/Match.aspl:2:1

method construct

Source: /home/runner/work/aspl/aspl/stdlib/regex/Match.aspl:12:2

method construct(int start, int end, string value)

function regex.find_first

Source: /home/runner/work/aspl/aspl/stdlib/regex/regex.aspl:2:1

function find_first(string pattern, string haystack) returns Match?

function regex.match_string

Source: /home/runner/work/aspl/aspl/stdlib/regex/regex.aspl:12:1

function match_string(string pattern, string haystack) returns Match?

function regex.replace_first

Source: /home/runner/work/aspl/aspl/stdlib/regex/regex.aspl:22:1

function replace_first(string pattern, string replace, string haystack) returns string

function regex.find_all

Source: /home/runner/work/aspl/aspl/stdlib/regex/regex.aspl:27:1

function find_all(string pattern, string haystack) returns list<Match>

function regex.replace_all

Source: /home/runner/work/aspl/aspl/stdlib/regex/regex.aspl:37:1

function replace_all(string pattern, string replace, string haystack) returns string