Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Hay guys, i need help with a REGEX.
I have the got the value of an input box with this.
fileext = filename.split(".").reverse()[0];
I need to make sure this is a jpg, gif or png. Else throw an error.
Thanks
Try using only regular expressions:
/\.(jpe?g|png|gif)$/i.test(filename);
This will check that the string ends with the correct extension.
Add a comment
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.