object ASCIIFolding
- Alphabetic
- By Inheritance
- ASCIIFolding
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val MaxASCIIExpandedLength: Int
The maximum number of ASCII characters a single Unicode character will expand to
The maximum number of ASCII characters a single Unicode character will expand to
All examples that expands to 4 characters:
'\u247D' => "(10)" // ⑽ [PARENTHESIZED NUMBER TEN] '\u247E' => "(11)" // ⑾ [PARENTHESIZED NUMBER ELEVEN] '\u247F' => "(12)" // ⑿ [PARENTHESIZED NUMBER TWELVE] '\u2480' => "(13)" // ⒀ [PARENTHESIZED NUMBER THIRTEEN] '\u2481' => "(14)" // ⒁ [PARENTHESIZED NUMBER FOURTEEN] '\u2482' => "(15)" // ⒂ [PARENTHESIZED NUMBER FIFTEEN] '\u2483' => "(16)" // ⒃ [PARENTHESIZED NUMBER SIXTEEN] '\u2484' => "(17)" // ⒄ [PARENTHESIZED NUMBER SEVENTEEN] '\u2485' => "(18)" // ⒅ [PARENTHESIZED NUMBER EIGHTEEN] '\u2486' => "(19)" // ⒆ [PARENTHESIZED NUMBER NINETEEN] '\u2487' => "(20)" // ⒇ [PARENTHESIZED NUMBER TWENTY]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fold(s: String): String
Converts Accented Characters to the Non-Accented Equivalent String.
Converts Accented Characters to the Non-Accented Equivalent String.
Note: This expands stuff like Æ to AE)
- def fold(c: Char): String
Converts Accented Characters to a Non-Accented Equivalent String or returns back the original Char as a String if no mapping available.
- def foldAsChar(c: Char): Char
Converts Accented Characters to a Non-Accented Equivalent Char or returns back the original Char if no mapping available.
Converts Accented Characters to a Non-Accented Equivalent Char or returns back the original Char if no mapping available.
Note: This only works for when there is a 1 to 1 Character equivalence (i.e. it does not work for stuff like Æ which needs to expand to AE)
- def get(c: Char): Option[String]
Converts Accented Characters to the Non-Accented Equivalent String (or None if already ASCII or no conversionn exists).
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getOrNull(c: Char): String
Converts Accented Characters to the Non-Accented Equivalent String (or null if already ASCII or no conversion exists).
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Collection of Scala String Helpers
Links: