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.
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
Hi @saritha use strText.Substring(14)
Thank u.
May I know how to use Sunstring concept.
Hi ,
Should we give any starting position ?
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)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.