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

  • SEARCH
  • Home
  • 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 7646035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:06:10+00:00 2026-05-31T10:06:10+00:00

Suppose I want to match all strings except one: ABC How can I do

  • 0

Suppose I want to match all strings except one: “ABC”
How can I do this?

I need this for a regular expression model validation in asp.net mvc 3.

  • 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-31T10:06:12+00:00Added an answer on May 31, 2026 at 10:06 am

    Normally you would do like

    (?!ABC)
    

    So for example:

    ^(?!ABC$).*
    

    All the strings that aren’t ABC

    Decomposed it means:

    ^ beginning of the string
    (?!ABC$) not ABC followed by end-of-string
    .* all the characters of the string (not necessary to terminate it with $ because it is an eager quantifier)
    

    Technically you could do something like

    ^.*(?<!^ABC)$
    

    Decomposed it means

    ^ beginning of the string
    .* all the characters of the string 
    (?<!^ABC) last three characters captured aren't beginning-of-the-string and ABC 
    $ end of the string (necessary otherwise the Regex could capture `AB` of `ABC` and be successfull)
    

    using a negative look behind, but it is more complex to read (and to write)

    Ah and clearly not all the regex implementations implement them 🙂 .NET one does.

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

Sidebar

Related Questions

Suppose this is my code var str=abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;; var patt1=/abc=([\d]+)/g; document.write(str.match(patt1)); i want the output
Suppose I want to match abc within the string s only if it occurs
Example: Suppose in the following example I want to match strings that do not
Suppose I have these line: /path-to-something/section/resource?var=name /path-to-something/section/resource I want to use regular expression to
Suppose I want to count the lines of code in a project. If all
Suppose I was trying to match the following expression using regex.h in C++, and
my (@keys,@values) = ($text =~ /\{IS\:([a-zA-Z0-9_-]+)\}(.*)\{\\IS\:([a-zA-Z0-9_-]+)\}/g); is supposed to match strings like this {IS:cow}moo{\IS:cow}
I want to match all names that have First Name , then 2 or
HI all ,what i want is to map the images.Suppose i have two images
One can use numpy 's extract function to match an element in an array.

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.