docs.unity.cn
    Show / Hide Table of Contents

    Class StringExtensions

    Extension methods for strings

    Inheritance
    Object
    StringExtensions
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    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. 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

    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on Wednesday, December 21, 2022
    Terms of use