I'm trying to make a regex that captures a certain word can have a certain number of spaces after it and have a number right after.
Example
Created 100 images
I tried
/(created\s*\d*)/
Which matches what I want but also matches
'Created '
^No digits are after the word.
I want it to must include a digit as well