Hello,
I'm trying to split a string by using an regular expression splitting on Pipes. I also need to ignore any pipe within qoutes. The String being passed is below:
"Test|""Regex | Split""|Done|
This is the expression I'm using ""([^""]*)""|\| but I get a empty space for the pipes. I need only the data between the pipes. The output below
Test
Regex | Split
Done
Anyway I can get rid of these spaces?
Thanks in advance.
I'm trying to split a string by using an regular expression splitting on Pipes. I also need to ignore any pipe within qoutes. The String being passed is below:
"Test|""Regex | Split""|Done|
This is the expression I'm using ""([^""]*)""|\| but I get a empty space for the pipes. I need only the data between the pipes. The output below
Test
Regex | Split
Done
Anyway I can get rid of these spaces?
Thanks in advance.