How to get SubString from a String

Hi ,
can any one help me how to get

substring of Certification from a String UIPath Certification.

Didnt get positions exactly. Little bit confusing every time.

Thank u.

myString.Split(" "c)(1)
This will return Certification from your string.

Thanks
@saritha

2 Likes

Hi @saritha use strText.Substring(14)

2 Likes

Thank u.

May I know how to use Sunstring concept.

Hi ,
Should we give any starting position ?

2 Likes

Very briefly:

The first argument is the index of the first character to return (counting from 0)
The second optional argument is the length of the result (if omited, goes to the end)

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.