I have the following text
"a|mother" "b|father"
I want to find via Regex, groups of text that starts with '"'
and ends with '"'
and separate with '|'
without spaces. Meaning the results would be:
"a|mother"
"b|father"
How can I find the |? and how can I find my pattern without spaces?