Pattern
System.Text.RegularExpressions.Regex
${this}.matcher(${input})
System.String
input
Match
System.Text.RegularExpressions.Match
${this}.matcher(${input}).matches()
System.String
input
IsMatch
System.Boolean
java.util.regex.*
Pattern.compile(${pattern}).matcher(${input}).matches()
System.String
input
System.String
pattern
IsMatch
System.Boolean
java.util.regex.*
Pattern.compile(${pattern}).matcher(${input}).replaceAll(${replacement})
System.String
input
System.String
pattern
System.String
replacement
Replace
System.String
java.util.regex.*
new Pattern()
java.util.regex.*
Pattern.compile(${pattern})
System.String
pattern