Example:
- I want Aaa - 1993 - Bbb Ccc to be Aaa - 1993 - Bbb ccc
Code: Select all
(.+) (.+)
Code: Select all
$1 $2
I hope I made myself clear LOL. Thanks!
Moderators: Hacker, petermad, Stefan2, white
Code: Select all
(.+) (.+)
Code: Select all
$1 $2
In the file name mask you can include both original name and name in lowercase. Then use regular expressions to get the right part from these strings.arbacia wrote:I want to change some parts of the filename to lowercase.
....
Something like [L]$2 doesn't work :S
Code: Select all
File name mask: [N]\[L][N][n]
Search for: (.* ).*\\.* (.*)|\\.*
Replace with: $1$2
RegEx checked
[E] not checked
Subst not checked
This is not part of a Regular Expression scheme, it's program specific.Stefan2 wrote:The regex-case-syntax would be:
Changing case in the 'Replace' box of regular expressions rule
Special character Description
\u Converts the next character to uppercase.
....
But that is not supported with TC.
....