|
ContentsStringreplaceAll :: String -> String -> String -> String
replaceFirst :: String -> String -> String -> String
substituteAll :: String -> (String -> String) -> String -> String
substituteFirst :: String -> (String -> String) -> String -> String
Undocumented entitiesappendReplacement :: Matcher -> StringBuffer -> String -> <Proc> Matcher
appendTail :: Matcher -> StringBuffer -> <Proc> StringBuffer Appends to the given buffer the input that follows the last match. compile :: String -> Pattern Compiles the given regular expression. freezeStringBuffer :: StringBuffer -> <Proc> String The contents of the string buffer as a string. group :: Matcher -> <Proc> String Returns the input subsequence matched by the previous match. groupCount :: Matcher -> <Proc> Integer Returns the number of capturing groups in this matcher's pattern. groupNm :: Matcher -> String -> <Proc> Maybe String Returns the input subsequence captured by the given named group during the previous match operation. groupNr :: Matcher -> Integer -> <Proc> Maybe String Returns the input subsequence captured by the given group during the previous match operation. matchGroups :: Pattern -> String -> Maybe [Maybe String] Get parts matched by each group in the pattern, if a match is found. matcher :: Pattern -> String -> Matcher
matcherFind :: Matcher -> <Proc> Boolean Attempts to find the next subsequence of the input sequence that matches the pattern. matches :: Matcher -> <Proc> Boolean Attempts to match the entire region against the pattern. newStringBuffer :: () -> StringBuffer Creates a new empty string buffer. quoteReplacement :: String -> String Escapes the given string so that it can be used as a literal replacement. replaceAll_ :: Matcher -> String -> String Replaces every match of the matcher by the given replacement string. replaceFirst_ :: Matcher -> String -> String Replaces the first match of the matcher by the given replacement string. substring :: String -> Integer -> String
substringl :: String -> Integer -> Integer -> String
|