Hello, I have a quick question:
I have a string in the following format:
|001|ACOMMAND|a rgument1|argume nt2|
Now I need to get 'argument1' and 'argument2'. For the other strings I used StringBuilder.R emove, since they both have a fixed lengths. But 'argument1' and 'argument2' dont have a fixed length, so I cant use that.
Is there a function that lets me split the string by the '|'?
Thanks in advance!
I have a string in the following format:
|001|ACOMMAND|a rgument1|argume nt2|
Now I need to get 'argument1' and 'argument2'. For the other strings I used StringBuilder.R emove, since they both have a fixed lengths. But 'argument1' and 'argument2' dont have a fixed length, so I cant use that.
Is there a function that lets me split the string by the '|'?
Thanks in advance!
Comment