string

  • String class with RPA(UiPath)

    String Class with Uipath   [String] String.Concat (VarName1, VarName2) : Concatenate the string representations of two objects [Boolean] VarName.Contains(“Text”) : Whether the string contains [String] String.Format(“{0} is {1}”, VarName1, VarName2) : Convert the object value to a string and insert it into other text. [Int32] VarName1.IndexOf(“a”) : Returns the index (starting from 0) of the…