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

Regular Expressions

 
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 
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 
You don't seem to be allowing any content between the <a> and </a>. I think you need (.*) in there (it should be a replacement group because it's what you want to keep), and the matching to be done non-greedily.

Also, you don't allow for multiple <a> inside the same <pre>.

I don't really think regex is the right tool for this job, as there's lots of context and state-change in what you're trying to do. An XML based solution seems better to me. But something like

<pre[^>]*>(.*)(?:<a[^>]*>(.*)</a>(.*))*</pre>

... in non-greedy mode and writing all the found groups into the output might work.
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 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy4-Oct-12 1:01
professionalManfred Rudolf Bihy4-Oct-12 1:01 
GeneralRe: how to make username regex for windows forms Pin
Peter_in_27804-Oct-12 2:51
professionalPeter_in_27804-Oct-12 2:51 
GeneralRe: how to make username regex for windows forms Pin
Peter_in_27802-Oct-12 12:36
professionalPeter_in_27802-Oct-12 12:36 
Question[SOLVED] C Code Parsing Pin
Richard Andrew x645-Sep-12 16:03
professionalRichard Andrew x645-Sep-12 16:03 
AnswerRe: C Code Parsing Pin
Peter_in_27805-Sep-12 16:45
professionalPeter_in_27805-Sep-12 16:45 

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.