Difference between revisions of "ReNamer:Rules:Remove"

From den4b Wiki
Jump to navigation Jump to search
Line 6: Line 6:
 
[[Image:RemoveRule.png]]
 
[[Image:RemoveRule.png]]
  
This rule removes the specified string from the name. It has options to remove the first occurrence only, the last occurrence only, or all the occurrences. You can enter multiple strings at a time. If ReNamer finds any of them in the name, it will be removed. You can create a pattern with wild cards, so that any string that matches the pattern will be removed.
+
This rule removes the specified string from the file name. It has options to remove the first occurrence, the last occurrence, or all the occurrences of the specified string. You can enter multiple strings at a time (just separate them with "'''|'''"). If ReNamer finds any of them in the name, they will be removed. You can create a pattern with wildcards, so that any string that matches the pattern will be removed.
  
 
The parameters are as follows:
 
The parameters are as follows:
Line 24: Line 24:
 
|-
 
|-
 
| [[Image:PlusButton.png]] button
 
| [[Image:PlusButton.png]] button
| Press to insert a <nowiki>*|*</nowiki> separator between strings.
+
| Press to insert a separator between strings. You can also type a vertical bar ('''<nowiki>|</nowiki>''') from the keyboard.
  
 
|-
 
|-
 
| Occurrences
 
| Occurrences
| In case the strings occurs multiple times in the name, specify which occurrences should be removed. (Options are- ''First only'', ''last only'', or ''all'')
+
| In case the strings occure multiple times in the name, specify which occurrences should be removed. (Options are: ''first only'', ''last only'', or ''all'')
  
 
|-
 
|-
 
| Skip extension
 
| Skip extension
| If this check box is unselected, the extension will be included in the rule.
+
| If this check box is selected, the rule won't touch the extention.
  
 
|-
 
|-
Line 40: Line 40:
 
|-
 
|-
 
| Interpret symbols as wildcards
 
| Interpret symbols as wildcards
| The following wild cards are allowed (compare with RegEx).
+
| The following wildcards are allowed (compare with RegEx).
  
 
{| class="prettytable"
 
{| class="prettytable"

Revision as of 22:48, 25 August 2009

{{{iparam}}} This article needs to be cleaned up!

Template:ReNamer Help

Remove Rule

RemoveRule.png

This rule removes the specified string from the file name. It has options to remove the first occurrence, the last occurrence, or all the occurrences of the specified string. You can enter multiple strings at a time (just separate them with "|"). If ReNamer finds any of them in the name, they will be removed. You can create a pattern with wildcards, so that any string that matches the pattern will be removed.

The parameters are as follows:

Parameter Details
Remove Enter the string to be removed.
  • You can enter multiple strings at a time. Press the + button to separate two strings
  • If the name does not contain the specified string, the rule will not act on it.
  • If the name contains more than one of these strings, it will remove all of them.
PlusButton.png button Press to insert a separator between strings. You can also type a vertical bar (|) from the keyboard.
Occurrences In case the strings occure multiple times in the name, specify which occurrences should be removed. (Options are: first only, last only, or all)
Skip extension If this check box is selected, the rule won't touch the extention.
Case sensitive Will only remove a specified string from the name if the case matches exactly.
Interpret symbols as wildcards The following wildcards are allowed (compare with RegEx).
Represents Example
*
any number of characters (including numbers, space, underscores, etc.). abc* equals abc followed by 0 or more characters.
?
Any single character (including numbers, space, underscores, etc.) ab?d equals abcd, ab1d, ab d, ab_d, etc.
[]
Brackets enclose a set of characters, any one of which may match a single character at that position. foo[ab]ar equals fooaar and foobar
-
(only within a pair of brackets) denotes a range of characters. foo[a-z]ar equals fooaar, foobar, foocar, foodar, etc.