Question / Help The regular expression that you entered is invalid.

fqvls

New Member
1581805499308.png


I have this issue. I read in other posts on the forum and isually is solved by putting a "-" behind a "\" or something like that, but idk what to do in my case.
Edit: I already tried putting only "Blender" in the name and didn't work.
 

kitfox_com

New Member
You can type in Blender.* which will match anything that starts with the word 'Blender'. If you have two blender files you want to switch between, you can do something like Blender.*nameOfFirstFile.* and Blender.*nameOfSecondFile.*. Basically the . means 'match any character' and the * means 'match any number of times'. If you do a web search on regular expressions, you can get an even more options for using regular expressions.
 

kitfox_com

New Member
You can type in Blender.* which will match anything that starts with the word 'Blender'. If you have two blender files you want to switch between, you can do something like Blender.*nameOfFirstFile.* and Blender.*nameOfSecondFile.*. Basically the . means 'match any character' and the * means 'match any number of times'. If you do a web search on regular expressions, you can get an even more options for using regular expressions.
Let me change that. If you need to switch between two files, use .*nameOfFirstFile.* and .*nameOfSecondFile.*. Using Blender at the start is not working for some reason.
 
Top