All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.madgag.textmatching.package.scala Maven / Gradle / Ivy

package com.madgag

import scala.util.matching.Regex
import scala.util.matching.Regex.Match

package object textmatching {
  implicit class RichRegex(regex: Regex) {
    def matches(s: String) = regex.pattern.matcher(s).matches

    def -->(replacer: Match => String): String => String = regex.replaceAllIn(_, replacer)

    def -->(replacement: String): String => String = regex.replaceAllIn(_, replacement)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy