Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6157767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:50:34+00:00 2026-05-23T20:50:34+00:00

I’m trying to write a javascript regexp for a blacklist of file extensions. I’m

  • 0

I’m trying to write a javascript regexp for a blacklist of file extensions. I’m using a jquery plugin that has an option for acceptable file types that takes a regex, but rather than maintain a whitelist we would like to maintain a blacklist. So I need the regex to only match if the string doesn’t contain certain file extensions. Currently there is a regex we use to whitelist photo extensions on our photo upload:

/(\.|\/)(gif|jpe?g|png)$/i

For our document upload we would like to simply do a blacklist, but I haven’t been able to make the ?! delimeter work. So for the sake of an example how would I reverse this regex to match as long as the file extension doesn’t contain gif, jpg, jpeg, png?

I’ve tried several different ways of using the ?!, but nothing I’ve tried has worked properly. Heres some examples of what I have tried unsuccessfully:

/(\.|\/)(?!gif|jpe?g|png)$/i

/(\.|\/)(?!(gif|jpe?g|png))$/i

Essentially I need this regex to always return true unless the blacklisted file extensions are matched.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T20:50:34+00:00Added an answer on May 23, 2026 at 8:50 pm


    This works:

    /\.(?!(?:exe|js|htaccess)$)|\/(?!(?:exe|js|htaccess)$)/i
    

    I think it’s because the “match only if not followed by” doesn’t like parentheses before it, but I’m not sure.

    This new regex now works with the parentheses and multiple extensions:

    /^.*(\.|\/)(?!(exe|js|htaccess)$)(?![^\.\/]*(\.|\/))/i
    

    However, to allow files with no extension, this must be used:

    /(^.*(\.|\/)(?!(exe|js|htaccess)$)(?![^\.\/]*(\.|\/)))|(^[^\.]+$)/i
    //                                                     ^^^^^^^^^
    //                                  This part matches a name without any dots
    

    Looking at the complexity of that regex, I suggest that you implement something server-side or use another plugin.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.