Sounds silly as get_all uses get to gather it's results. But this is what we get.
import pcre
// match value between double quotes (don't include quotes)
r := pcre.new_regex('"(.*?)"', 0)!
s := '"hello"'
m := r.match_str(s, 0, 0) or {
println('No match!')
return
}
println(m.get(0)!) // "hello"
println(m.get_all()[0]) // hello
Sounds silly as get_all uses get to gather it's results. But this is what we get.