Click or drag to resize
StringX Methods

The StringX type exposes the following members.

Methods
  NameDescription
Public methodStatic memberContainsLowercase
Determines whether or not the specified String contains any lowercase characters.
Public methodStatic memberContainsUppercase
Determines whether or not the specified String contains any uppercase characters.
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, IListString)
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 memberToFeetInchesString
Converts Single meters value to feet and inches string.
Public methodStatic memberToHexString
Gets the hex string representation of color in the form #XXXXXXXX.
Public methodStatic memberToSnakeCase
Converts the specified camelCase or PascalCase string to snake_case. For example, "localPosition" or "LocalPosition" becomes "local_position".
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, PascalCase, or snake_case string to words. For example, "localPosition", "LocalPosition", and "local_position" become "Local Position".
Public methodStatic memberTryParseNumberStringAsEnum
Tries to parse the specified numberString into an enum value of the specified enumType.
Top
See Also