re.findall,matchallみたいなテキストを抽出するやつ
text="abcdefg"
collect(eachmatch(r"[a-c]",text)) #pythonで言うre.findall,旧juliaのmatchall
3-element Vector{RegexMatch}:
RegexMatch("a")
RegexMatch("b")
RegexMatch("c")
@WolfMoonさんがコメントでご指摘するように
juliaのfindallはあるのですが位置になります。ありがとうございました。