I have the following string:
(1, 2, 3, 4)
I want to convert it to just the last two values:
(3, 4)
In my actual code all four fields are whole numbers but vary greatly in length. I've tried doing this with both regex and 'for' statements as well as trying the various answers to similar questions here on SO but so far no luck.
"This is String"| List =[1,2,3,4,5]| Tuple =(1,2,3,4)