473,385 Members | 1,518 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

C# Regular Expressions not behaving?

I’m new to regular expressions in c# and can’t get even basic searchs to
work as I believe they’re supposed to. The following example is where I
try to identify any word in a string:
this.filecontent = "the cat sat on the mat";

this.MethodSpotter = new Regex("(\\w+)",RegexOptions.IgnoreCase);

MatchCollection result = this.MethodSpotter.Matches
(this.filecontent);

The result is that I get an Unhandled exception saying item has already
been added.

The following example returns the entire string rather than just the
word “cat”, surely such behaviour is incorrect?

this.filecontent = "the cat sat on the mat";

this.MethodSpotter = new Regex("cat",RegexOptions.IgnoreCase);

MatchCollection result = this.MethodSpotter.Matches
(this.filecontent);

Also how do I ensure that a string must finish with a particular
character? The $ operator just seems to be ignored.

Many thanks for any assistance you may be able to offer.


*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 16 '05 #1
1 1384
this works:
using System;
using System.Text.RegularExpressions;

namespace ConsoleApplication1
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
string s = "the cat sat on the mat";

Regex r = new Regex("(\\w+)",RegexOptions.IgnoreCase);

MatchCollection result = r.Matches(s);

Console.WriteLine(result.Count);
}
}
}
It's just a cut and paste from your code.
Please minimize your sample code next time - the problem is somewhere else.

christopher green wrote:
I’m new to regular expressions in c# and can’t get even basic searchs to
work as I believe they’re supposed to. The following example is where I
try to identify any word in a string:
this.filecontent = "the cat sat on the mat";

this.MethodSpotter = new Regex("(\\w+)",RegexOptions.IgnoreCase);

MatchCollection result = this.MethodSpotter.Matches
(this.filecontent);

The result is that I get an Unhandled exception saying item has already
been added.

The following example returns the entire string rather than just the
word “cat”, surely such behaviour is incorrect?

this.filecontent = "the cat sat on the mat";

this.MethodSpotter = new Regex("cat",RegexOptions.IgnoreCase);

MatchCollection result = this.MethodSpotter.Matches
(this.filecontent);

Also how do I ensure that a string must finish with a particular
character? The $ operator just seems to be ignored.

Many thanks for any assistance you may be able to offer.


*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 16 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Kenneth McDonald | last post by:
I'm working on the 0.8 release of my 'rex' module, and would appreciate feedback, suggestions, and criticism as I work towards finalizing the API and feature sets. rex is a module intended to make...
2
by: Sehboo | last post by:
Hi, I have several regular expressions that I need to run against documents. Is it possible to combine several expressions in one expression in Regex object. So that it is faster, or will I...
4
by: Együd Csaba | last post by:
Hi All, I'd like to "compress" the following two filter expressions into one - assuming that it makes sense regarding query execution performance. .... where (adate LIKE "2004.01.10 __:30" or...
7
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
1
by: clickon | last post by:
I am using a RegularExpressionValidator to validate against a range on specific values and it is behaving strangely. My validation expression is as follows ...
3
by: a | last post by:
I'm a newbie needing to use some Regular Expressions in PHP. Can I safely use the results of my tests using 'The Regex Coach' (http://www.weitz.de/regex-coach/index.html) Are the Regular...
1
by: Allan Ebdrup | last post by:
I have a dynamic list of regular expressions, the expressions don't change very often but they can change. And I have a single string that I want to match the regular expressions against and find...
13
by: Wiseman | last post by:
I'm kind of disappointed with the re regular expressions module. In particular, the lack of support for recursion ( (?R) or (?n) ) is a major drawback to me. There are so many great things that can...
12
by: FAQEditor | last post by:
Anybody have any URL's to tutorials and/or references for Regular Expressions? The four I have so far are: http://docs.sun.com/source/816-6408-10/regexp.htm...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.