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

com.github.tototoshi.fixture.StringUtil.scala Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package com.github.tototoshi.fixture

private[fixture] object StringUtil {

  def trimTrailingSlashes(s: String): String = s.reverse.dropWhile('/'==).reverse

  def trimLeadingSlashes(s: String): String = s.dropWhile('/'==)

  def trimSlashes(s: String): String = trimLeadingSlashes(trimTrailingSlashes(s))

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy