Is it possible to substring backwards. By that i mean i have a string like:
Test_Test_T_630
or
TestTest_Test_T_6305
or
TestTestTest_Test_T_63050
Would it be possible to to trim it to just accordingly:
Test_Test_T
or
TestTest_Test_T
or
TestTestTest_Test_T
I know you couldn’t use the substring to look for _T as this would trim too early, so could you do it backwards to look for the LAST underscore?
You could alternatively use regular expressions.