Class StringExtensions
Extension methods for String objects.
Inherited Members
Namespace: Unity.XR.CoreUtils
Syntax
public static class StringExtensions
Methods
FirstToUpper(String)
Capitalizes the first letter of a string.
Declaration
public static string FirstToUpper(this string str)
Parameters
Type | Name | Description |
---|---|---|
String | str | String to be capitalized. |
Returns
Type | Description |
---|---|
String | The new string. |
InsertSpacesBetweenWords(String)
Inserts spaces into a string between words separated by uppercase letters. Numbers are treated as uppercase.
Declaration
public static string InsertSpacesBetweenWords(this string str)
Parameters
Type | Name | Description |
---|---|---|
String | str | Input string. |
Returns
Type | Description |
---|---|
String | Input string with spaces added. |
Remarks
Examples:
- "HelloWorld" -> "Hello World"
- "HelloWORLDAgain" -> "Hello WORLD Again"