I did my best to check the internet and stack for info but I am having trouble wrapping my head around regex for my utility.
I have a string that follows this pattern:
[any a-z,1-9]_reel[0-9]*2_scn[0-9]*4_shot[0-9]*4
ex:
kim_reel05_scn0101_shot0770
n74_reel05_scn0001_shot0700
ninehundred_reel05_scn0001_shot0700
I need to check those examples to see if it follows that proj_reel##_scn####_shot#### pattern and then if it does proceed! I am not sure how to write this expression as I honestly am having trouble understanding how to use the special characters.
someone want to help me out?
prog_reel[0-9]{2}_scn[0-9]{4}_shot{0-9]{4}
?[0-9]
to\d
.