I have text that I need to match on in between the pipes. I have tried \|[^|]+\|
, but that doesn't seem to gather each one.
|N/A|text123|text1235|Medium|1|Medium|test123|test456|test|test|test|http|tcp|
I have text that I need to match on in between the pipes. I have tried \|[^|]+\|
, but that doesn't seem to gather each one.
|N/A|text123|text1235|Medium|1|Medium|test123|test456|test|test|test|http|tcp|
This looks like a job for split:
Output:
As far as a regex, this should work: