Click here to Skip to main content
15,867,568 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
GeneralRe: how to make a white space regex Pin
shaikh-adil18-Nov-12 17:39
shaikh-adil18-Nov-12 17:39 
GeneralRe: how to make a white space regex Pin
Jochen Arndt18-Nov-12 21:32
professionalJochen Arndt18-Nov-12 21:32 
Questionpart of string before a match Pin
PozzaVecia29-Oct-12 10:21
PozzaVecia29-Oct-12 10:21 
AnswerRe: part of string before a match Pin
Richard Deeming29-Oct-12 10:37
mveRichard Deeming29-Oct-12 10:37 
GeneralRe: part of string before a match Pin
PozzaVecia29-Oct-12 11:08
PozzaVecia29-Oct-12 11:08 
AnswerRe: part of string before a match Pin
Matt T Heffron29-Oct-12 11:22
professionalMatt T Heffron29-Oct-12 11:22 
QuestionRegex getting special caracter Pin
PozzaVecia28-Oct-12 4:46
PozzaVecia28-Oct-12 4:46 
AnswerRe: Regex getting special caracter Pin
Richard Deeming29-Oct-12 2:24
mveRichard Deeming29-Oct-12 2:24 
You're nearly there:
string k = Regex.Match(s1, @"\(""(\w+)""\)").Groups[1].Value;


For #1, unless you need to ensure that the brackets are balanced, Regex is overkill. Add using System.Linq; to your file, and try:
int count = s1.Count(c => c == '(');




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Regex getting special caracter Pin
PozzaVecia29-Oct-12 9:47
PozzaVecia29-Oct-12 9:47 
QuestionExtract tag within pre tag Pin
DATHeike2-Oct-12 0:00
DATHeike2-Oct-12 0:00 
AnswerRe: Extract tag within pre tag Pin
Pete O'Hanlon2-Oct-12 0:16
subeditorPete O'Hanlon2-Oct-12 0:16 
GeneralRe: Extract tag within pre tag Pin
DATHeike2-Oct-12 0:53
DATHeike2-Oct-12 0:53 
AnswerRe: Extract tag within pre tag Pin
BobJanova2-Oct-12 1:19
BobJanova2-Oct-12 1:19 
GeneralRe: Extract tag within pre tag Pin
DATHeike2-Oct-12 1:23
DATHeike2-Oct-12 1:23 
GeneralRe: Extract tag within pre tag Pin
Pete O'Hanlon2-Oct-12 1:32
subeditorPete O'Hanlon2-Oct-12 1:32 
Questionhow to make username regex for windows forms Pin
sariqkhan30-Sep-12 21:20
sariqkhan30-Sep-12 21:20 
AnswerRe: how to make username regex for windows forms Pin
Kenneth Haugland30-Sep-12 22:32
mvaKenneth Haugland30-Sep-12 22:32 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan30-Sep-12 23:11
sariqkhan30-Sep-12 23:11 
GeneralRe: how to make username regex for windows forms Pin
Richard MacCutchan30-Sep-12 23:44
mveRichard MacCutchan30-Sep-12 23:44 
AnswerRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy2-Oct-12 2:11
professionalManfred Rudolf Bihy2-Oct-12 2:11 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan2-Oct-12 7:22
sariqkhan2-Oct-12 7:22 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy3-Oct-12 23:10
professionalManfred Rudolf Bihy3-Oct-12 23:10 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan3-Oct-12 23:27
sariqkhan3-Oct-12 23:27 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy4-Oct-12 0:44
professionalManfred Rudolf Bihy4-Oct-12 0:44 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan4-Oct-12 0:55
sariqkhan4-Oct-12 0:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.