StringNormalizations

org.scalactic.StringNormalizations
See theStringNormalizations companion trait

Companion object to trait StringNormalizations that provides an alternative to mixing it in.

Attributes

Companion
trait
Source
StringNormalizations.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Inherited fields

val lowerCased: Uniformity[String]

Produces a Uniformity[String] whose normalized method returns the result of invoking toLowerCase on the passed string.

Produces a Uniformity[String] whose normalized method returns the result of invoking toLowerCase on the passed string.

Attributes

Returns

a Uniformity[String] that normalizes by transforming strings to lower case.

Inherited from:
StringNormalizations
Source
StringNormalizations.scala
val trimmed: Uniformity[String]

Produces a Uniformity[String] whose normalized method returns the result of invoking trim on the passed string.

Produces a Uniformity[String] whose normalized method returns the result of invoking trim on the passed string.

Attributes

Returns

a Uniformity[String] that normalizes strings by trimming them.

Inherited from:
StringNormalizations
Source
StringNormalizations.scala
val upperCased: Uniformity[String]

Produces a Uniformity[String] whose normalized method returns the result of invoking toUpperCase on the passed string.

Produces a Uniformity[String] whose normalized method returns the result of invoking toUpperCase on the passed string.

Attributes

Returns

a Uniformity[String] that normalizes by transforming strings to upper case.

Inherited from:
StringNormalizations
Source
StringNormalizations.scala