Advanced tags

This is more advanced tags for the more advanced users because they are more difficult to use.

<ExifTool:value> Insert value from the external program ExifTool. VALUE is the name of the ExifTool tag to be used.
<Substr
:pos:count:start>
Will insert a part of the original filename into the new name. The POS and COUNT parameters are used to define what part of the filename that will get copyed.
Example of use: <Substr:5:2> will return "wa" for the filename "The walking man.txt".

The parameters don't have to be numeric indexes, they can also be text strings to search for in the filename.
Example of use: <Substr:ki:an> will return "ng m" for "The walking man.txt".
The following will yield the same result: <Substr:ki:4>

In the rare cases where you actually want to search for a number in the filename you can put the search term in quotes.
Example of use: <Substr:"2":2> will return "nd" for "The 2nd door.txt".

The optional START parameter will define where to start searching the name.
Example of use: <Subtr:".":5:3> will return "Story" for "A.Cool.Story.txt"
<RSubstr
:pos:count:start>
Works exactly as the <Substr> tag but searches the string backwards.

Example of use <RSubstr:2:3> for "A cool baby" will return "bab"
<Csv:x> When data has been imported with the "Import data from CSV" functionality in the Import menu, the values can be used with this tag. The X is a numeric value representing the column index with the first column having numeric value 1.

Also take a look at this page.
<Rand:min:max> Inserts a random number. MIN and MAX can be used to specify a minimum and a maximum range.
<Rand Str:length> Inserts a random string. Use the LENGTH value to specify the length of the string. Uses the values from a to z in lower case to produce the random string.
<Inc Hex:x:y> Will insert an incrementing hex based number starting with X and up. X can be any number value. Note X should be a decimal number, not a hex based number. For more information, see <Inc Nr> tag. Default value for X is 1.
<Inc Roman:x:y> Will insert an incrementing roman numeral starting with X and up. X can be any number value. Note X should be a decimal number, not a roman numeral. For more information, see <Inc Nr> tag. Default value for X is 1.
<Dec Nr:x:y> Works like the <Inc Nr> tag but ads a decrementing number instead of an incrementing one. The X value is used to tell the program what the starting number will be and Y is the step value between each file.
<File Content
:pos:count:filename>
Will insert a text phrase from a file. It will use the text starting a position POS in the filename and copy COUNT characters.  If FILENAME is specified, Advanced Renamer will search for the text phrase in that file. If FILENAME is omitted the file which is being renamed is used.

If FILENAME is specified it must be quoted with ".

Examples of use:
<File Content:46:12:"c:\program files\files\myfile.txt">
<File Content:56:9>

Note: FILENAME is optional. POS and COUNT is required.
<File Line:x> Will insert a line of text from the file. The parameter X is the line number, starting from 1. Note, do not use on binary files.