Hello monks,
I've been struggling with this for a couple days, though I don't think the problem is very difficult.
Within: 'this is a [[link with a [
nested]]]'
I would like to extract the entire parent [
..]. There will be multiple instances, not all with nested brackets.
What is the correct code syntax? I've tried all kinds of things without much luck.
I'm assuming it's with extract_multiple and an extract ref, but can't figure out what exactly to do:
my @data = extract_multiple( $text,
???? );
FYI, this is all toward parsing raw wiki text.
Thanks in advance.