|
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 compile :: String -> Pattern freezeStringBuffer :: StringBuffer -> <Proc> 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 quoteReplacement :: String -> String replaceAll_ :: Matcher -> String -> String replaceFirst_ :: Matcher -> String -> String substring :: String -> Integer -> String
substringl :: String -> Integer -> Integer -> String
|