How to make a new folder with right click on filename

Hi,
I found on forum something like this - to make new folder based on filename selected: for ex. abcdefg.exe will make new folder abcdefg

Clipboard COPYNAMES=nopaths REGEXP (.).[^.] \1
CreateFolder FROMCLIPBOARD NAME

This allow me to right click on filename and choose to make a new folder based on filename without extension.
The problem is if I select several files it doesn't allowed me to make several folders but just only one at a time.
How to modify this command to allow me to make as many new folders as files I selected.

Thanks

You can do this a different way, and it will work with multiple files, like this:

CreateFolder {file|noext}

Thanks,
very simple and working