| StringX Class |
Namespace: Candlelight
public static class StringX
The StringX type exposes the following members.
| Name | Description | |
|---|---|---|
| GetStringBuilder |
Gets a StringBuilder from an internal pool.
| |
| GetUniqueName(String, HashSetString) |
Gets an auto-incremented version of the specified base name that does not already exist in the specified
collection.
| |
| GetUniqueName(String, IEnumerableString) |
Gets an auto-incremented version of the specified base name that does not already exist in the specified
collection.
| |
| Join |
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.
| |
| Range |
Gets a slice of the supplied String using the specified start index, end index, and
skip. Mimics slicing operator in Python.
| |
| ReleaseStringBuilder |
Returns the specified StringBuilder to the internal pool.
| |
| ToFeetInchesString |
Converts Single meters value to feet and inches string.
| |
| ToTimeString |
Converts Single to a time string.
| |
| ToTitleCase |
Converts the words to title case words. For example, "local position" becomes "Local Position".
| |
| ToWords |
Converts the specified camelCase or PascalCase string to words. For example, "localPosition" or
"LocalPosition" becomes "Local Position".
|