RegexReplacementRule

class RegexReplacementRule(regex: String, val replacement: String) extends AbstractRegexReplacementRule

RegexReplacementRule class.

trait Rule
class Object
trait Matchable
class Any

Value members

Concrete methods

override def replace(matcher: Matcher): String

Use the state in the given [[Matcher]] to perform a replacement.

Use the state in the given [[Matcher]] to perform a replacement.

Definition Classes

Inherited methods

def applies(word: String): Boolean

Tests to see if this rule applies for the given word.

Tests to see if this rule applies for the given word.

Returns:

true if this rule should be applied, false otherwise

Inherited from:
AbstractRegexReplacementRule
def apply(word: String): String

Applies this rule to the word, and transforming it into a new form.

Applies this rule to the word, and transforming it into a new form.

Returns:

the transformed word

Inherited from:
AbstractRegexReplacementRule

Concrete fields

val replacement: String