How to re-write a string

I have this string ABCD_4567 they need it to be written this way, 4567ABCD what is the process to do this?

@jeff.shubzda

Try this

string.join("",stroutput.Split("_").ToArray.reverse)

A regex starter help option:
grafik

Hi @jeff.shubzda

Try this

resultString = String.Join("", originalString.Where(Function(c) Char.IsDigit(c)).Concat(originalString.Where(Function(c) Char.IsLetter(c))))

Hope it helps

@jeff.shubzda

Check out the below workflow for better understanding

Regards

Hello @jeff.shubzda,
Try this one

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