···1414Re-Options:
1515 -g, --global Replace all matches instead of just the first
1616 --fstring Treat the REPLACEMENT as an f-string
1717+f-string Mode:
1818+ m0: the whole match, match.group(0)
1919+ m#: m1,m2,etc, each regex group in turn, match.group(#)
2020+ name: matches against (?<name>...) in the regex
2121+ m: the match object itself, including all its attributes
2222+```
2323+## Examples
2424+```
2525+multimv -n re -g '\.(?![^.]+$)' ' ' \
2626+ 'dumb.movie.[1080p].[5.1].[etc].mkv'
2727+2828+- 'dumb.movie.[1080p].[5.1].[etc].mkv'
2929++ 'dumb movie [1080p] [5 1] [etc].mkv'
3030+3131+3232+multimv -n re -g ' *\[.*?\]' '' \
3333+ 'dumb movie [1080p] [5 1] [etc].mkv'
3434+3535+- 'dumb movie [1080p] [5 1] [etc].mkv'
3636++ 'dumb movie.mkv'
3737+3838+3939+multimv -n re --fstring '\d+' '{int(m0)+1:0>{len(m0)}}' \
4040+ page000 page001 page002 index
4141+4242+~ index
4343+- page002
4444++ page003
4545+- page001
4646++ page002
4747+- page000
4848++ page001
1749```