• 0

Need some .NET based Regex help


Question

I'm not that adept at regex and really need some guidance here. Below are my expressions 

 

First I am looking for all instances of Comstock that are not Comstock (exact case match)

(?!comstock)(?i)\Comstock\b

 

 

Second I'm looking only for fully lower case comstock.

?!comstock)(?i)\Comstock\b

 

Both of these expressions work just fine in an online tester however .NET complains about the \C as an unrecognized escape sequence.  I've tried using Regex.Escape("\C") in the string as well as manually making it "\\C" however while passing the parser without  error, it now fails to match any data.

 

So.. is there anyway to create that expression such that it finds instances of comstock that do not match a case sensitive comparison?

 

Link to comment
https://www.neowin.net/forum/topic/1377611-need-some-net-based-regex-help/
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Compiles fine. It's run time exception when the regex utilizes the expression.  I want to blame the .NET regex parser because as I said, its a valid expression in several online regex testers

 

In a nutshell, I just need to find instances of a string that are not case sensitive matches to my desired word and that word always starts with the letter C.

 

If the source is "This is the best comstock of all is Comstock"  and my rule is Comstock must be in proper case, I need to find that lower case comstock as a match.

 

or 

 

If the source is "This is the best Comstock of all is comstock"  and my rule is Comstock must be in lower case, I need to find that proper case Comstock as a match.

 

 

 

 

  • 0
Regex regex = new Regex(@"(?!comstock)(?i)Comstock\b");
Match match = regex.Match("This is the best comstock of all is Comstock");
if (match.Success)
{
  Console.WriteLine(match.Value);
}

Regex regex2 = new Regex(@"(?!Comstock)(?i)comstock\b");
Match match2 = regex2.Match("This is the best Comstock of all is comstock");
if (match2.Success)
{
  Console.WriteLine(match2.Value);
}

does this work for you?

  • 0

I am guessing you came right, for regex where I am looking for a word or pattern there is a really awesome site called txt2re.com. It's awesome in that it can quickly help you build your regex pattern for multiple languages, c#, php, phython etc.

 

It's not suited for seriously complex regex but for quick things, it is  a god send.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • My son is in Monaco right now, and I was checking his location in Apple's Find My app. I noticed that Prince Albert's Palace was blurred out on the satellite imagery in both Find My and Apple Maps. I checked Google Maps, and the palace wasn't blurred there. Does Apple have some kind of process where property owners can request that their homes be blurred on Apple Maps?
    • No, it was THAT ugly and I’d rather forget it completely existed.
    • There is a lot of reasons not to use Edge but faster fixes and security updates is not one of them.
    • Can't reproduce. I installed Edge, went to neowin.net > accepted the cookie consent > used menu to go to forums, everything loads and I can browse around the forums. If you can't interact with the dialog on the forums for some reason, go to the main site and accept the cookie consent there? It is true that the site will not function properly until the cookie consent is accepted or rejected,. it's a legal requirement and I also know that certain VPN/ad blockers block it, which is a user related issue and not a neowin.net problem.   This is not our cookie consent dialog. Gotta love browser hijacking... /s Edit: this may be what Californians see, I will confirm with our consent provider.
    • Google Chrome 149.0.7827.115 (offline installer) by Razvan Serea The web browser is arguably the most important piece of software on your computer. You spend much of your time online inside a browser: when you search, chat, email, shop, bank, read the news, and watch videos online, you often do all this using a browser. Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. Use one box for everything--type in the address bar and get suggestions for both search and Web pages. Thumbnails of your top sites let you access your favorite pages instantly with lightning speed from any new tab. Desktop shortcuts allow you to launch your favorite Web apps straight from your desktop. Chrome has many useful features built in, including automatic full-page translation and access to thousands of apps, extensions, and themes from the Chrome Web Store. Google Chrome is one of the best solutions for Internet browsing giving you high level of security, speed and great features. Important to know! The offline installer links do not include the automatic update feature. Download web installer: Google Chrome Web 32-bit | Google Chrome 64-bit | Freeware Download: Google Chrome Offline Installer 64-bit | Direct Link | 131.0 MB Download: Google Chrome Offline Installer 32-bit | Direct Link | 119.0 MB Download page: Google Chrome Portable Download: Chrome ARM64 | Direct Link View: Chrome Website | Release Notes Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      Clizby earned a badge
      One Month Later
    • One Month Later
      Timaximus earned a badge
      One Month Later
    • Week One Done
      Timaximus earned a badge
      Week One Done
    • Rookie
      FBSPL went up a rank
      Rookie
    • First Post
      davidbazooked earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      491
    2. 2
      PsYcHoKiLLa
      170
    3. 3
      +Edouard
      164
    4. 4
      Steven P.
      85
    5. 5
      ATLien_0
      76
  • Tell a friend

    Love Neowin? Tell a friend!