Results 1 to 4 of 4

Thread: pyRenamer / Expression Help

  1. #1
    Join Date
    Apr 2008
    Beans
    45

    pyRenamer / Expression Help

    Hello. I posted this question to the pyRenamer Launchpad site and didn't get a response, so thought I'd try it here. Any suggestions would be appreciated!


    I'd like to use pyRenamer to identify and rename files with reserved characters in the file name. The files came from windows where I'm guessing the characters didn't cause problems.

    For example, I want to replace the ? (question mark), ' (single quote), etc. I tried using the escape (\) character before the special character in the replace field on the substitutions tab, but for some reason I don't believe that method was identifying the special characters.

    What is the correct way to identify a special / reserved character within a file name and replace it? A few examples would be helpful. Thanks in advance for your help.

  2. #2
    Join Date
    Feb 2007
    Location
    Romania
    Beans
    Hidden!

    Re: pyRenamer / Expression Help

    Not sure about pyRenamer, but in GPRename you can use regular expressions: ['"?] should do the trick.



    If you don't mind using the perl based rename command, in bash, you can try something like:
    Code:
    reg=$'?\'\"'
    rename -n "s/[$reg]/FOO/g" ./*
    Invoked with the -n flag it will only show what files would have been renamed.

    It will replace each question mark, single and double quote with FOO.

  3. #3
    Join Date
    Apr 2009
    Beans
    204

    Re: pyRenamer / Expression Help

    Quote Originally Posted by dwitkin View Post
    For example, I want to replace the ? (question mark), ' (single quote), etc. I tried using the escape (\) character before the special character in the replace field on the substitutions tab, but for some reason I don't believe that method was identifying the special characters.

    What is the correct way to identify a special / reserved character within a file name and replace it? A few examples would be helpful. Thanks in advance for your help.
    Substitution tab > replace 'x' by 'y' for each character to replace or remove.
    Or if you want to do it all in once, you will need to use the pattern tab

    Example:
    foo ? and foobar, live2007.wav

    Pattern:
    Code:
    Original file: {L} ? {L} {L}, {X}
    Renamed file: {1}_{2}_{3}_{4}
    Output:
    foo_and_foobar_live2007.wav

  4. #4
    Join Date
    Feb 2008
    Location
    Texas
    Beans
    29,807
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: pyRenamer / Expression Help

    Thanks for sharing. Thread Closed.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •