473,382 Members | 1,441 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,382 software developers and data experts.

Regex

Hi

I'm trying to do something which I think is pretty simple, but really I
don't know what I'm doing :-)

I have a string like this

HELLO WORLD
25 ERRORS

I want to search the string and return and line with the word ERRORS

25 ERRORS
I've tried this, but it's not working... Can oneone help a dummy please?
Thanks
Regex reg1 = new Regex("HELLO WORLD" + Environment.NewLine + "25 ERRORS");

Match m;

m = reg1.Match(".ERRORS.");

textBox2.Text = m.Value;


Jul 13 '06 #1
4 3640
Hi there,
Regex is one of those things that takes some time to get used to. If I
read your question right, you want to find a line that looks like
<beginning of line><some set of digits><the word "ERRORS">

If that's what you want, take a look at this code:

string stringToSearch = "Don't match this line" + Environment.NewLine
+ "Or this line" + Environment.NewLine + "25 ERRORS";
string patternToMatch = "^[0-9]+ ERRORS";
Regex reg1 = new Regex(patternToMatch,RegexOptions.Multiline);
Match m = reg1.Match(stringToSearch);
if (m.Success)
MessageBox.Show(m.Value);

The Regex in this case breaks down like this:

^ means match the beginning of a line
[0-9]+ means match any number of digits
ERRORS means just match the string

Hope that helps,
John

..... wrote:
Hi

I'm trying to do something which I think is pretty simple, but really I
don't know what I'm doing :-)

I have a string like this

HELLO WORLD
25 ERRORS

I want to search the string and return and line with the word ERRORS

25 ERRORS
I've tried this, but it's not working... Can oneone help a dummy please?
Thanks
Regex reg1 = new Regex("HELLO WORLD" + Environment.NewLine + "25 ERRORS");

Match m;

m = reg1.Match(".ERRORS.");

textBox2.Text = m.Value;
Jul 13 '06 #2
You have not explained your business rules.
I have a string like this
In what way is your string "like this?" What is similar? What is different?
Will it always be the same string? If not, what will be different?
I want to search the string and return and line with the word ERRORS
How do you know there will only be one line with the word "ERRORS" in it?
Again, what are the business rules? Will the word "ERRORS" always be
preceded by a number? Will there always be only a number followed by the
word "ERRORS?"

It looks to me like you probably don't need a Regular Expression at all, but
you haven't defined the problem well enough to answer.

Quite often, the greater part of any problem-solving process is simply
identifying the problem.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

What You Seek Is What You Get.
"...." <...@nowhere.comwrote in message
news:ex**************@TK2MSFTNGP05.phx.gbl...
Hi

I'm trying to do something which I think is pretty simple, but really I
don't know what I'm doing :-)

I have a string like this

HELLO WORLD
25 ERRORS

I want to search the string and return and line with the word ERRORS

25 ERRORS
I've tried this, but it's not working... Can oneone help a dummy please?
Thanks
Regex reg1 = new Regex("HELLO WORLD" + Environment.NewLine + "25 ERRORS");

Match m;

m = reg1.Match(".ERRORS.");

textBox2.Text = m.Value;


Jul 13 '06 #3
..... <...@nowhere.comwrote:
Hi

I'm trying to do something which I think is pretty simple, but really I
don't know what I'm doing :-)

I have a string like this

HELLO WORLD
25 ERRORS

I want to search the string and return and line with the word ERRORS

25 ERRORS
I've tried this, but it's not working... Can oneone help a dummy please?
Thanks
Regex reg1 = new Regex("HELLO WORLD" + Environment.NewLine + "25 ERRORS");

Match m;

m = reg1.Match(".ERRORS.");

textBox2.Text = m.Value;
Try:

Regex rx = new Regex(".*ERRORS.*");
if (rx.IsMatch(testString))
{
textBox2.Text = testString;
}

I had to "guess" your intent with the example code you wrote, so let me know
if I am off and I can try to help further.

--
Thomas T. Veldhouse
Key Fingerprint: 2DB9 813F F510 82C2 E1AE 34D0 D69D 1EDC D5EC AED1

Jul 13 '06 #4
Thomas T. Veldhouse <ve*****@yahoo.comwrote:
.... <...@nowhere.comwrote:
>Hi

I'm trying to do something which I think is pretty simple, but really I
don't know what I'm doing :-)

I have a string like this

HELLO WORLD
25 ERRORS

I want to search the string and return and line with the word ERRORS

25 ERRORS
I've tried this, but it's not working... Can oneone help a dummy please?
Thanks
Regex reg1 = new Regex("HELLO WORLD" + Environment.NewLine + "25 ERRORS");

Match m;

m = reg1.Match(".ERRORS.");

textBox2.Text = m.Value;

Try:

Regex rx = new Regex(".*ERRORS.*");
if (rx.IsMatch(testString))
{
textBox2.Text = testString;
}

I had to "guess" your intent with the example code you wrote, so let me know
if I am off and I can try to help further.
Ah ... I see you have a newline and would like to break on numbers as well:

Regex rx = new Regex("^[0-9]+ ERRORS");
foreach (string str in testString.Split(Environment.Newline))
{
if (rx.IsMatch(str))
{
textBox2.Text = str;
break;
}
}
--
Thomas T. Veldhouse
Key Fingerprint: 2DB9 813F F510 82C2 E1AE 34D0 D69D 1EDC D5EC AED1

Jul 13 '06 #5

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

Similar topics

3
by: Jon Maz | last post by:
Hi All, Am getting frustrated trying to port the following (pretty simple) function to CSharp. The problem is that I'm lousy at Regular Expressions.... //from...
9
by: Tim Conner | last post by:
Is there a way to write a faster function ? public static bool IsNumber( char Value ) { if (Regex.IsMatch( Value.ToString(), @"^+$" )) { return true; } else return false; }
20
by: jeevankodali | last post by:
Hi I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex...
17
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher ...
6
by: Extremest | last post by:
I have a huge regex setup going on. If I don't do each one by itself instead of all in one it won't work for. Also would like to know if there is a faster way tried to use string.replace with all...
7
by: Extremest | last post by:
I am using this regex. static Regex paranthesis = new Regex("(\\d*/\\d*)", RegexOptions.IgnoreCase); it should find everything between parenthesis that have some numbers onyl then a forward...
3
by: aspineux | last post by:
My goal is to write a parser for these imaginary string from the SMTP protocol, regarding RFC 821 and 1869. I'm a little flexible with the BNF from these RFC :-) Any comment ? tests= def...
15
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
4
by: CJ | last post by:
Is this the format to parse a string and return the value between the item? Regex pRE = new Regex("<File_Name>.*>(?<insideText>.*)</File_Name>"); I am trying to parse this string. ...
0
by: Karch | last post by:
I have these two methods that are chewing up a ton of CPU time in my application. Does anyone have any suggestions on how to optimize them or rewrite them without Regex? The most time-consuming...
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: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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.