Fix typo.
This commit is contained in:
parent
8870c915d1
commit
f102f19c33
|
|
@ -30,7 +30,7 @@ You can use matching groups in the pattern to capture parts of the filename that
|
|||
|
||||
The `--replacement` argument specifies the replacement pattern for the matched filenames. This argument is required.
|
||||
|
||||
You can use reference groups in the pattern by using `\1`, `\2`, etc. to refer to the captured groups in the `--pattern` argument. For example, if you have a pattern `"S(\d+)E(\d+)"` that matches `"S01E11"` and you want to replace it with `"Season 01 Episode 02"`, you can use the following replacement pattern: `"Season \1 Episode \2"`.
|
||||
You can use reference groups in the pattern by using `\1`, `\2`, etc. to refer to the captured groups in the `--pattern` argument. For example, if you have a pattern `"S(\d+)E(\d+)"` that matches `"S01E11"` and you want to replace it with `"Season 01 Episode 11"`, you can use the following replacement pattern: `"Season \1 Episode \2"`.
|
||||
|
||||
You can also use the following special tags in the replacement pattern:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue