Nameless07 4 Im all new to regex so i dont really know how to do this, but how can i match any number between 5115 and 5121? Thank you in advance Quote Share this post Link to post Share on other sites
textverified 0 Im all new to regex so i dont really know how to do this, but how can i match any number between 5115 and 5121? Thank you in advance 51(1[5-9]|2[0-1]) But really, use ordinal comparison... 5115 <= x && x <= 5121 Quote Share this post Link to post Share on other sites
Nameless07 4 Im all new to regex so i dont really know how to do this, but how can i match any number between 5115 and 5121? Thank you in advance 51(1[5-9]|2[0-1]) But really, use ordinal comparison... 5115 <= x && x <= 5121 Thank you very much Quote Share this post Link to post Share on other sites