Difference between revisions of "ReNamer:Rules:RegEx"

From den4b Wiki
Jump to navigation Jump to search
m (Reverted edits by Stefan (talk) to last revision by Den4b)
Tag: Rollback
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== RegEx Rule  ==
+
{{Go|up=ReNamer:Rules|prev=ReNamer:Rules:Translit|next=ReNamer:Rules:PascalScript}}
<center>[[Image:RegExRule.png]]</center>
 
This rule finds text that matches the specified RegEx pattern, and replaces it with another string. RegEx is short for '''Regular Expressions''', which stands for special syntax for describing search and replace patterns. The [[ReNamer:Regular Expressions|RegEx syntax]] is explained in the appendix.
 
  
(The RegEx engine used by ReNamer is a little different from the standard PERL RegEx or Windows RegEx, so even if you arean experienced RegEx user, please have a look at the [[ReNamer:Regular_Expressions|rules]]!)<br>
+
[[Image:RegExRule.png|center]]
  
<br> The parameters are as follows:  
+
This rule finds text that matches the specified RegEx pattern, and replaces it with another string. RegEx is short for '''Regular Expressions''', which stands for special syntax for describing search and replace patterns. Regular Expressions are very powerful and they are ''really'' worth learning. The [[ReNamer:Regular Expressions|RegEx syntax]] is explained in the appendix.
  
{| class="prettytable"
+
'''Note:''' The [http://www.regexpstudio.com/ TRegExpr] RegEx engine used by ReNamer is a little different from the standard [http://perldoc.perl.org/perlre.html PERL RegEx] or [http://msdn.microsoft.com/en-us/library/6wzad2b2(VS.85).aspx Windows RegEx]. You may check the correct syntax in [[ReNamer:Regular Expressions|Regular Expressions]] section.
 +
 
 +
The parameters are as follows:
 +
 
 +
{| class="wikitable"
 
|-
 
|-
 
! Parameter  
 
! Parameter  
Line 19: Line 21:
 
|-
 
|-
 
| 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 extension will be ignored by the rule.
 
|-
 
|-
 
| Case-sensitive  
 
| Case-sensitive  
Line 25: Line 27:
 
|}
 
|}
  
'''Tip:''' ReNamer users have posted many RegEx patterns at the [http://www.den4b.com/forum/index.php User Forum]. You can copy and use them.
+
A simple set of commonly used RegEx syntax patterns is provided in the hint menu:
 +
 
 +
[[File:RegExRuleSyntaxHint.png]]
 +
 
 +
'''Tip:''' ReNamer users have posted many RegEx patterns at the [http://www.den4b.com/forum/ User Forum]. You can copy and use them.
 +
 
 +
[[Category:ReNamer]]

Revision as of 23:32, 8 July 2019

RegExRule.png

This rule finds text that matches the specified RegEx pattern, and replaces it with another string. RegEx is short for Regular Expressions, which stands for special syntax for describing search and replace patterns. Regular Expressions are very powerful and they are really worth learning. The RegEx syntax is explained in the appendix.

Note: The TRegExpr RegEx engine used by ReNamer is a little different from the standard PERL RegEx or Windows RegEx. You may check the correct syntax in Regular Expressions section.

The parameters are as follows:

Parameter Details
Expression RegEx pattern to match or find.
Replace RegEx pattern that replaces the found pattern.
Skip extension If this check box is selected, the extension will be ignored by the rule.
Case-sensitive If this option is selected, ReNamer will search for the text in case-sensitive manner.

A simple set of commonly used RegEx syntax patterns is provided in the hint menu:

RegExRuleSyntaxHint.png

Tip: ReNamer users have posted many RegEx patterns at the User Forum. You can copy and use them.