forked from extern/nushell
# Description For a long time, I was searching for the `str extract` command to extract regexes from strings. I often painfully used `str replace -r '(.*)(pattern_to_find)(.*)' '$2'` for such purposes. Only this morning did I realize that `parse` is what I needed for so many times, which I had only used for parsing data in tables.