Slit text, substract?

Hello,

How can I get for further processing last 4 symbols of a text thats lenght is unknown:
for example (I need x values):
“afbfanfaldflXXXX”
“CCXXXX”

Thanks!

1 Like

@USUSER1 Check this -

https://forum.uipath.com/t/trim-or-substring/3705/7?u=aksh1yadav

Hi @USUSER1,

do something like this:

YoutString = YoutString.Substring(YoutString.Length -4)

Thanks!!

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