Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
416 views
in Technique[技术] by (71.8m points)

c# - Using parenthesis in Regular Expressions pattern

I've a string "This text has some (text inside parenthesis)". So i want to retrieve the text inside the parenthesis using Regular Expressions in C#. But parenthesis is already a reserved character in regular expressions. So how to get it?

Update 1

so for the text "afasdfas (2009)"

I tried (.)/s((/d+)) and (.) (d+) and (.*)/s((/d/d/d/d)). None of them is working. Any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Like this:

// For "This text has some (text inside parenthesis)"
Regex RegexObj = new Regex(@"(([^)]*))");

// For "afasdfas (2009)"
Regex RegexObj = new Regex(@"((d+))");

Edit:

@SealedSun, CannibalSmith : Changed. I also use @"" but this was c/p from RegexBuddy :P

@Gregg : Yes, it is indeed faster, but I prefer to keep it simpler for answering such questions.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...