Select regexp?

Hello.. I'm having a bit of trouble creating a button.

Intended selection:
File1.rar.001
File1.rar.002
File1.rar.003
...

I've tried to do this like this:
SELECT REGEXP={file|noext}.[0-9]+

to get it to select all matching files of the currently selected one (File1.rar.001 selected), which kind of works, except it deselects the initial file, which also matches the pattern.
Do you have some tips on how to avoid this? I have tried SELECT RESELECT, but it seems to clear all selections in this case.

I'm trying to create a button which selects all matching files, joins them, then extracts the resulting file with winrar.

Just add: @nodeselect

@nodeselect SELECT REGEXP={file|noext}\.[0-9]+

I didn't even remember that :slight_smile:
Thank you for reminding me.