2017-3: Miss Quoted
Write a function that will remove text found between pairs of double quotes ("
).
💡 Hint: One technique is to use ≠\
, but there are many ways to solve this problem.
Examples:
(your_function) 'this "is" a test'
this "" a test
(your_function) 'this is a test'
this is a test
(your_function) 'this "is" a "test"'
this "" a ""
(your_function) '' ⍝ should return an empty vector
your_function ←
Solutions

