I have this string ABCD_4567 they need it to be written this way, 4567ABCD what is the process to do this?
A regex starter help option:
Try this
resultString = String.Join("", originalString.Where(Function(c) Char.IsDigit(c)).Concat(originalString.Where(Function(c) Char.IsLetter(c))))
Hope it helps
Hello @jeff.shubzda,
Try this one
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.