Help for this page
DB<100> $str = q!AND (random text) AND (more random text) AND (yet m +ore)!; => "AND (random text) AND (more random text) AND (yet more)" ... AND: (random text) AND: (more random text) AND: (yet more)
DB<103> @matches = split /(AND|OR)/,$str => ( ... "AND", " (yet more)", )