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 7408211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:52:27+00:00 2026-05-29T05:52:27+00:00

I have a regular expression in my code to match on the keys (control

  • 0

I have a regular expression in my code to match on the keys (control ClientId) within a form POST. I am looping round all the keys in the form data and performing the required action when a match is found.

However the regex is matching more times than I need it to. This runs on every request and if performing unnecessary code to fire.

Match match = Regex.Match(key.ToLower(), @"(?!\$)(?:[a-z0-9]+)$",
                          RegexOptions.Compiled);

Sample string that are coreectly matching

master$maincontentplaceholder$ucsearchresults$hdnvalue
master$maincontentplaceholder$ucsearchresults$hdnvalue2
master$maincontentplaceholder$ucsearchresults$hdnvalue3

I then have a switch statment with cases matching the control id

case: "hdnvalue"
case: "hdnvalue2"
case: "hdnvalue3"

The form is also returning a large number of extra keys that do not always require processing. It would be good if I could exclude these from being matched within the regex. (note the extra client id level $ucfilter)

master$maincontentplaceholder$ucsearchresults$ucfilter$hdnvalue
master$maincontentplaceholder$ucsearchresults$ucfilter$hdnvalue2
master$maincontentplaceholder$ucsearchresults$ucfilter$hdnvalue3
  • 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-29T05:52:27+00:00Added an answer on May 29, 2026 at 5:52 am

    If you don’t /have/ to use regex, you might do better with LastIndexOf(“$”)

    using System;
    
    namespace ConsoleApplication3
    {
        class Program
        {
            static void Main(string[] args)
            {
                string text = "master$maincontentplaceholder$ucsearchresults$ucfilter$hdnvalue";
                string id = text.Substring(text.LastIndexOf("$") + 1);
                Console.WriteLine(id);
                Console.ReadLine();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Anybody have a regular expression to replace the following code: <a href=originalLink>hi</a> with: <a
I have a regular expression to match a persons name. So far I have
I have a regular expression to match anything between { and } in my
Does anyone have a regular expression handy that will match any legal DNS hostname
Is there a simple regular expression to match all unicode quotes? Or does one
I am trying to generate a regular expression match in Java, that accepts all
I have a regular expression: l:([0-9]+) This should match this string and return three
I have a PHP regular expression I'm using to get the YouTube video code
What follows is a regular expression I have written to match multi-line pre-processor macros
I have a somewhat complex regular expression which I'm trying to match against a

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.