Equations
- instCoeStringSubstring = { coe := String.toSubstring }
Knuth-Morris-Pratt matcher type
This type is used to keep data for running the Knuth-Morris-Pratt (KMP) string matching algorithm. KMP is a linear time algorithm to locate all substrings of a string that match a given pattern. Generating the algorithm data is also linear in the length of the pattern but the data can be re-used to match the same pattern over different strings.
The KMP data for a pattern string can be generated using Matcher.ofString
. Then Matcher.find?
and Matcher.findAll
can be used to run the algorithm on an input string.
def m := Matcher.ofString "abba"
#eval Option.isSome <| m.find? "AbbabbA" -- false
#eval Option.isSome <| m.find? "aabbaa" -- true
#eval Array.size <| m.findAll "abbabba" -- 2
#eval Array.size <| m.findAll "abbabbabba" -- 3
- table : Array.PrefixTable Char
- state : Fin (Array.PrefixTable.size self.table + 1)
- pattern : Substring
The pattern for the matcher
Make KMP matcher from pattern substring
Equations
- String.Matcher.ofSubstring pattern = { toMatcher := Array.Matcher.ofStream pattern, pattern := pattern }
Make KMP matcher from pattern string
Equations
- String.Matcher.ofString pattern = String.Matcher.ofSubstring (String.toSubstring pattern)
The byte size of the string pattern for the matcher
Equations
- String.Matcher.patternSize m = Substring.bsize m.pattern
Find all substrings of s
matching m.pattern
.
Equations
- String.Matcher.findAll m s = String.Matcher.findAll.loop m s m.toMatcher #[]
Accumulator loop for String.Matcher.findAll
Find the first substring of s
matching m.pattern
, or none
if no such substring exists.
Equations
- One or more equations did not get rendered due to their size.
Returns the longest common prefix of two substrings.
The returned substring will use the same underlying string as s
.
Equations
- Substring.commonPrefix s t = { str := s.str, startPos := s.startPos, stopPos := Substring.commonPrefix.loop s t s.startPos t.startPos }
Returns the ending position of the common prefix, working up from spos, tpos
.
Equations
- One or more equations did not get rendered due to their size.
Returns the longest common suffix of two substrings.
The returned substring will use the same underlying string as s
.
Equations
- Substring.commonSuffix s t = { str := s.str, startPos := Substring.commonSuffix.loop s t s.stopPos t.stopPos, stopPos := s.stopPos }
Returns the starting position of the common prefix, working down from spos, tpos
.
Equations
- One or more equations did not get rendered due to their size.
If pre
is a prefix of s
, i.e. s = pre ++ t
, returns the remainder t
.
Equations
- Substring.dropPrefix? s pre = let t := Substring.commonPrefix s pre; if Substring.bsize t = Substring.bsize pre then some { str := s.str, startPos := t.stopPos, stopPos := s.stopPos } else none
Returns all the substrings of s
that match pattern
.
Equations
- Substring.findAllSubstr s pattern = String.Matcher.findAll (String.Matcher.ofSubstring pattern) s
Returns the first substring of s
that matches pattern
,
or none
if there is no such substring.
Equations
- Substring.findSubstr? s pattern = String.Matcher.find? (String.Matcher.ofSubstring pattern) s
Returns true iff pattern
occurs as a substring of s
.
Equations
- Substring.containsSubstr s pattern = Option.isSome (Substring.findSubstr? s pattern)
Returns all the substrings of s
that match pattern
.
Equations
- String.findAllSubstr s pattern = String.Matcher.findAll (String.Matcher.ofSubstring pattern) (String.toSubstring s)
Returns the first substring of s
that matches pattern
,
or none
if there is no such substring.
Equations
- String.findSubstr? s pattern = Substring.findSubstr? (String.toSubstring s) pattern
Returns true iff pattern
occurs as a substring of s
.
Equations
- String.containsSubstr s pattern = Substring.containsSubstr (String.toSubstring s) pattern
If pre
is a prefix of s
, i.e. s = pre ++ t
, returns the remainder t
.
Equations
- String.dropPrefix? s pre = Substring.dropPrefix? (String.toSubstring s) pre
If suff
is a suffix of s
, i.e. s = t ++ suff
, returns the remainder t
.
Equations
- String.dropSuffix? s suff = Substring.dropSuffix? (String.toSubstring s) suff
s.stripPrefix pre
will remove pre
from the beginning of s
if it occurs there,
or otherwise return s
.
Equations
- String.stripPrefix s pre = Option.getD (Option.map Substring.toString (String.dropPrefix? s pre)) s
s.stripSuffix suff
will remove suff
from the end of s
if it occurs there,
or otherwise return s
.
Equations
- String.stripSuffix s suff = Option.getD (Option.map Substring.toString (String.dropSuffix? s suff)) s
Count the occurrences of a character in a string.
Equations
- String.count s c = String.foldl (fun (n : Nat) (d : Char) => if d = c then n + 1 else n) 0 s