Multisplit: Difference between revisions

parentheses and quotes
(no need to mention output twice)
(parentheses and quotes)
Line 7:
Test your code using the input string “<code>a!===b=!=c</code>” and the separators “<code>==</code>”, “<code>!=</code>” and “<code>=</code>”.
 
For these inputs the string should be parsed as <code>"a" (!=) "" (==) "b" (=) (!=) "c", where matched delimiters are shown in parentheses, and separated strings are quoted, so our resulting output is "a", empty string, "b", "c" </code>.
 
=={{header|Ada}}==