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

scalariform.utils.Trimmed.scala Maven / Gradle / Ivy

The newest version!
package scalariform.utils

object Trimmed {

  def apply(prefix: String, infix: String, suffix: String): String = prefix + infix + suffix

  def unapply(s: String): Option[(String, String, String)] = {
    val (prefix, rest) = s span Character.isWhitespace
    val (revSuffix, revInfix) = rest.reverse span Character.isWhitespace
    Some(prefix, revInfix.reverse, revSuffix.reverse)
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy