473,788 Members | 2,694 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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.New Line + "25 ERRORS");

Match m;

m = reg1.Match(".ER RORS.");

textBox2.Text = m.Value;


Jul 13 '06 #1
4 3711
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.New Line
+ "Or this line" + Environment.New Line + "25 ERRORS";
string patternToMatch = "^[0-9]+ ERRORS";
Regex reg1 = new Regex(patternTo Match,RegexOpti ons.Multiline);
Match m = reg1.Match(stri ngToSearch);
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.New Line + "25 ERRORS");

Match m;

m = reg1.Match(".ER RORS.");

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.co mwrote in message
news:ex******** ******@TK2MSFTN GP05.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.New Line + "25 ERRORS");

Match m;

m = reg1.Match(".ER RORS.");

textBox2.Text = m.Value;


Jul 13 '06 #3
..... <...@nowhere.co mwrote:
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.New Line + "25 ERRORS");

Match m;

m = reg1.Match(".ER RORS.");

textBox2.Text = m.Value;
Try:

Regex rx = new Regex(".*ERRORS .*");
if (rx.IsMatch(tes tString))
{
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.co mwrote:
>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.New Line + "25 ERRORS");

Match m;

m = reg1.Match(".ER RORS.");

textBox2.Tex t = m.Value;

Try:

Regex rx = new Regex(".*ERRORS .*");
if (rx.IsMatch(tes tString))
{
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.Spli t(Environment.N ewline))
{
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
2087
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 http://support.microsoft.com/default.aspx?scid=kb;EN-US;246800 function fxnParseIt() { var sInputString = 'asp and database';
9
4592
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
8119
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 matches are called within a loop (like if or for). E.g. for(int i = 0; i < 10; i++) { Regex r = new Regex();
17
3980
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 http://forta.com/books/0672325667/
6
2503
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 the right parts in there in one big line and for some reason that did not work either. Here is my regex's. static Regex rar = new Regex("\\.part.*", RegexOptions.IgnoreCase); static Regex par = new Regex("\\.vol.*", RegexOptions.IgnoreCase);
7
2589
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 slash then some numbers. For some reason I am not getting that. It won't work at all in 2.0
3
2702
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 RN(name, regex): """protect using () and give an optional name to a regex""" if name:
15
50262
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
2673
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. <File_Name>Services</File_Name> Thanks
0
1735
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 operation by a long-shot is the regex.Replace. Basically the only purpose of it is to remove spaces between opening/closing tags and the element name. Surely there is a better way. private string FixupJavascript(string htmlCode) { string result...
0
9656
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10370
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10177
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10113
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9969
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8995
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5538
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4074
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.