Click or drag to resize
StringX Methods

The StringX type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetStringBuilder
Gets a StringBuilder from an internal pool.
Public methodStatic memberGetUniqueName(String, HashSetString)
Gets an auto-incremented version of the specified base name that does not already exist in the specified collection.
Public methodStatic memberGetUniqueName(String, IEnumerableString)
Gets an auto-incremented version of the specified base name that does not already exist in the specified collection.
Public methodStatic memberJoin
Return a string which is the concatenation of the strings in the collection. The separator between elements is the string providing this method. Mimics str.join(iterable) in Python.
Public methodStatic memberRange
Gets a slice of the supplied String using the specified start index, end index, and skip. Mimics slicing operator in Python.
Public methodStatic memberReleaseStringBuilder
Returns the specified StringBuilder to the internal pool.
Public methodStatic memberToFeetInchesString
Converts Single meters value to feet and inches string.
Public methodStatic memberToTimeString
Converts Single to a time string.
Public methodStatic memberToTitleCase
Converts the words to title case words. For example, "local position" becomes "Local Position".
Public methodStatic memberToWords
Converts the specified camelCase or PascalCase string to words. For example, "localPosition" or "LocalPosition" becomes "Local Position".
Top
See Also