I have a string called : “Amazon Digital Vellum 55lb 12.5 x 9.5"”
From the above string i need to get the dimesnion which is 12.5 x 9.5"
and also need i have an array of strings :{“abc”,“def”,“123”,“456”,“789”}
how can i add last string from above array which is 123456789
postwick
(Paul Ostwick)
2
Regex to get the dimension:
[\d]*.[\d] x [\d]*.[\d].

and also need i have an array of strings :{“abc”,“def”,“123”,“456”,“789”}
how can i add last string from above array which is 123456789
yourArrayVar.Last will get you the last element in the array.
From my array i need to concante last 3 string which is “123”,“456”,“789” to 123456789
postwick
(Paul Ostwick)
4
yourArrayVar(yourArrayVar.Length-3) + yourArrayVar(yourArrayVar.Length-2) + yourArrayVar.Last
ppr
(Peter Preuss)
5
@niranjan.kodakandla
Welcome to the forum

we assume, that the ending " is also needed, maybe some variations e.g. the inverted ones are also handle
Assumption: Project set to Windows:

RnD was done within UiPath Studio Debugging - immediate panel
system
(system)
Closed
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.