Class StringExtensions
Extension methods for strings
Namespace: Unity.XRTools.Utils
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. E.g. "HelloWorld" -> "Hello World" or "HelloWORLDAgain" -> "Hello WORLD Again"
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 |