Rename files using first word of title?

Hello all,

When creating custom file renaming formulas, is it possible to specify a formula that uses a specific quantity of words from the title rather than a specific quantity of characters? I'm imagining a formula that truncates after a specific number of special characters (i.e. spaces or hyphens).

I'm new to the syntax of these formulas and not sure what keywords to "google" for more information.

Thanks!
  • I would like to know this too... it should be doable with the replaceForm and regexOpts parameters, but was not able to put it together unfortunately
  • edited 3 days ago
    Here my config for rename files using first word, in this case title with lowercase:

    {{ title case="lower" replaceFrom="^([^ ]+)\s+.*" replaceTo="$1" }}
Sign In or Register to comment.