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

Regex

Hello,

Could someone, please, tell me the regex expression to split:

"$String1{Id1}$ | $String2{Id2}$ ( $String3$ )"

Into:

"String1{Id1}", "String2{Id2}" and "String3"

And then "String1{Id1}" into:
"String1", "Id1", ...

Thanks,
Miguel

May 10 '07 #1
6 1735
Hi Miguel,

are you sure you need a regular expression to split this string?
why don't you use the String.Split functionality which splits a string into
an array?

Nico
May 10 '07 #2
"Nico Ploner" <Nico.Ploner@NO****@siegel-edv.dewrote in message
news:ud**************@TK2MSFTNGP02.phx.gbl...
are you sure you need a regular expression to split this string?
why don't you use the String.Split functionality which splits a string
into an array?
That's certainly the way I'd do it - I still have trouble getting my head
round regular expressions... :-)

--
http://www.markrae.net

May 10 '07 #3
On May 10, 8:59 pm, shapper <mdmo...@gmail.comwrote:
Hello,

Could someone, please, tell me the regex expression to split:

"$String1{Id1}$ | $String2{Id2}$ ( $String3$ )"

Into:

"String1{Id1}", "String2{Id2}" and "String3"
(?<=\$)(\w|{|})*?(?=\$)

And then "String1{Id1}" into:
"String1", "Id1", ...
\w*

May 10 '07 #4
On May 10, 11:29 pm, Alexey Smirnov <alexey.smir...@gmail.comwrote:
On May 10, 8:59 pm, shapper <mdmo...@gmail.comwrote:
Hello,
Could someone, please, tell me the regex expression to split:
"$String1{Id1}$ | $String2{Id2}$ ( $String3$ )"
Into:
"String1{Id1}", "String2{Id2}" and "String3"

(?<=\$)(\w|{|})*?(?=\$)
And then "String1{Id1}" into:
"String1", "Id1", ...

\w*
Hi Alexey,

I am trying to do another thing with regex which is similar to these
ones but is not working.

I have:
"Posted by $Author$ @ $DateTime${HH:mm}"

I want to get two strings:
"Posted by $Author$ @ $DateTime$"
And
"HH:mm"

Just two other things:
Should I always use regex for this kind of operation?
Do you know any good resource to learn regex?

Thanks,
Miguel
May 11 '07 #5
re:
Do you know any good resource to learn regex?
RegEx Library:
http://regexlib.com/

RegEx Tutorial :
http://www.regular-expressions.info/tutorial.html

The 30 minute RegEx Tutorial :
http://www.codeproject.com/dotnet/RegexTutorial.asp

Regular Expressions in .NET :
http://aspnet.4guysfromrolla.com/articles/022603-1.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"shapper" <md*****@gmail.comwrote in message
news:11**********************@q75g2000hsh.googlegr oups.com...
On May 10, 11:29 pm, Alexey Smirnov <alexey.smir...@gmail.comwrote:
>On May 10, 8:59 pm, shapper <mdmo...@gmail.comwrote:
Hello,
Could someone, please, tell me the regex expression to split:
"$String1{Id1}$ | $String2{Id2}$ ( $String3$ )"
Into:
"String1{Id1}", "String2{Id2}" and "String3"

(?<=\$)(\w|{|})*?(?=\$)
And then "String1{Id1}" into:
"String1", "Id1", ...

\w*

Hi Alexey,

I am trying to do another thing with regex which is similar to these
ones but is not working.

I have:
"Posted by $Author$ @ $DateTime${HH:mm}"

I want to get two strings:
"Posted by $Author$ @ $DateTime$"
And
"HH:mm"

Just two other things:
Should I always use regex for this kind of operation?
Do you know any good resource to learn regex?

Thanks,
Miguel


May 11 '07 #6
On May 11, 1:57 am, shapper <mdmo...@gmail.comwrote:
On May 10, 11:29 pm, Alexey Smirnov <alexey.smir...@gmail.comwrote:


On May 10, 8:59 pm, shapper <mdmo...@gmail.comwrote:
Hello,
Could someone, please, tell me the regex expression to split:
"$String1{Id1}$ | $String2{Id2}$ ( $String3$ )"
Into:
"String1{Id1}", "String2{Id2}" and "String3"
(?<=\$)(\w|{|})*?(?=\$)
And then "String1{Id1}" into:
"String1", "Id1", ...
\w*

Hi Alexey,

I am trying to do another thing with regex which is similar to these
ones but is not working.

I have:
"Posted by $Author$ @ $DateTime${HH:mm}"

I want to get two strings:
"Posted by $Author$ @ $DateTime$"
And
"HH:mm"
There are many ways to do it, for example

(\w|\s|@|\$|\:)*

It simply does search for all alphanumeric simbols + space + @ + $ and
a colon ':'

because of {} you will get the two strings as requested

Just two other things:
Should I always use regex for this kind of operation?
yes.
Do you know any good resource to learn regex?
www.google.com knows it :-)

Hope it helps

May 11 '07 #7

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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...
0
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,...
0
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...
0
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,...
0
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...

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.