It seems wildcard matching is only done when searching for the first string, but the wildcard use of the first string is maintained for the second string.
Examples:
Make a file named "filename".
Select the file and press Ctrl+M (Multi-rename tool).
Example 1 (wildcard use of first string is also used for second string)
Code: Select all
File name: filename
Search for: file|name
Replace with: ?-?-|----
Result: f-l-n-m-
Result should be: f-l-----
Code: Select all
File name: filename
Search for: file|name
Replace with: ----|?-?-
Result: ----?-?-
Result should be: ----n-m-
Code: Select all
File name: filename
Search for: file
Replace with: -*
Result: -ilenamename
Code: Select all
File name: filename
Search for: file|name
Replace with: -*|-
Result: -ile--
Code: Select all
File name: filename
Search for: file|name
Replace with: -*|--
Result: -ile-amename-ame
Result should be: -ile----