There is a string
string str = "123|&|321|&|323|&|121"; It is necessary to divide this string character by character and write to an array.
I understand that you can create a function, etc. But you can somehow overload String.Split() The end result should be
{ 123, 321, 323, 121 }