-
Is there a way to make the naming restrictions on new load file names less, well, restrictive? Currently, we can't name a file with two consecutive capital letters, or start a file name with numbers, or switch back and forth between numbers and letters. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Yes, sorry, the names of experiment queues. We're finding the PascalCase a bit restrictive (we used to name experiments with leading numeric digits, and often have the name of our irrad. packages which have consecutive capital characters). I'll prototype another regex and get back to you! |
Beta Was this translation helpful? Give feedback.
-
What do you think of |
Beta Was this translation helpful? Give feedback.
-
How about 12experiment |
Beta Was this translation helpful? Give feedback.
How about
^[\w\d\-\_]+$
12experiment
good
Experiment12
good
Experiment 12
bad
Experiemnt-12
good
Experiment_12
good
experiment12
good