i want to get text before the dot(.) in the below string
tedsad.sfs
can any one help me on this
i want to get text before the dot(.) in the below string
tedsad.sfs
can any one help me on this
@Tamilarasanaccet using Sub-string you can achieve this get the entire length of the string(“tedsad.sfs”) then get the index of char(‘.’) from you string then Substring(index of char, length of string)
Use indexOf to get the index and use the substring to get the value.
Hope this might be helpful to you.
https://rpageek.com/uipath-string-manipulation/
cheers
Happy learning
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.