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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:46:14+00:00 2026-06-04T11:46:14+00:00

Here i do a regular expression where _pattern is the list of teams and

  • 0

Here i do a regular expression where _pattern is the list of teams and _name is the keyword i would like to find whether it matches the _pattern.

Result shows that it matched. I’m wondering why is it possible because the keyword is totally different to the _pattern. I suspect that it is related with the é symbol.

string _pattern = "Ipswich Town F.C.|Ipswich Town Football Club|Ipswich|The Blues||Town|The Tractor Boys|Ipswich Town";
string _name = "Estudiantes de Mérida";
regex = new Regex( @"(" + _pattern + @")", RegexOptions .IgnoreCase );

Match m = regex. Match (_name );
if (m . Success)
{
   var g = m. Groups [1 ]. Value;
   break ;
}
  • 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-06-04T11:46:16+00:00Added an answer on June 4, 2026 at 11:46 am

    It has nothing to do with the é symbol. Let’s go over a few things..

    Is it right that there are 2 | in as your questions formulates :

    The Blues||Town
    

    Also the point has special meaning in a regex so you should escape it

    meaIpswich Town F\.C\.
    

    And alternatives should be enclosed with parenthesis:

    (Ipswich Town F.C.)|(Ipswich Town Football Club)|(Ipswich)|
    

    The parenthesis in the following java line are not necessary

    regex = new Regex( @"(" + _pattern + @")"
    

    Aneway, The reason that it matches is not do to a valid regex. I think it has to do with your use of the java API.

    The regex that I would rewrite for your purposes is:

    ^((Ipswich Town F\.C\.)|(Ipswich Town Football Club)|(Ipswich)|(The Blues)|(Town)|(The Tractor Boys)|(Ipswich Town))$
    

    As you can see, there are quit a few differences.

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

Sidebar

Related Questions

In python, I'm compiling a regular expression pattern like so: rule_remark_pattern = re.compile('access-list shc-[(in)(out)]
I would like to create a regular expression pattern that would succeed in matching
Using Visual Studio 2010 I would like to do a project level regular expression
Here's the regular expression I use, and I parse it using CAtlRegExp of MFC
Here is a regular expression I created to use in JavaScript: var reg_num =
here is code for regular expression matching #include<iostream> #include<stdio.h> #include<string.h> using namespace std; int
need help to create regular expression matching string www.*.abc.*/somestring Here * is wild card
I need to improve on a regular expression I'm using. Currently, here it is:
I'd like to create a regular expression in Python that will match against a
I would like to know if the result of RegEx.IsMatch is affected by encoding.

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.