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

Regular Expressions

 
AnswerRe: Something I just learned, with IP addresses Pin
Andreas Gieriet7-Apr-12 13:10
professionalAndreas Gieriet7-Apr-12 13:10 
QuestionHow to regex this Pin
Lutosław17-Jan-12 12:05
Lutosław17-Jan-12 12:05 
AnswerRe: How to regex this Pin
Peter_in_278017-Jan-12 12:37
professionalPeter_in_278017-Jan-12 12:37 
GeneralRe: How to regex this Pin
Lutosław17-Jan-12 12:55
Lutosław17-Jan-12 12:55 
AnswerRe: How to regex this Pin
Peter_in_278018-Jan-12 17:41
professionalPeter_in_278018-Jan-12 17:41 
GeneralRe: How to regex this Pin
Lutosław19-Jan-12 4:12
Lutosław19-Jan-12 4:12 
GeneralRe: How to regex this Pin
Lutosław19-Jan-12 4:52
Lutosław19-Jan-12 4:52 
AnswerRe: How to regex this Pin
Andreas Gieriet7-Apr-12 11:17
professionalAndreas Gieriet7-Apr-12 11:17 
Is this solved?
If not, and if you are talking about C# Regex, then the following will do:
C#
string p = @"\\begin\{verbatimtab\}[\s\S]*?\\end\{verbatimtab\}";
Console.WriteLine("{0}", Regex.Match(str1, p).Success);

The trick:

  1. use [\s\S] to match any character, independent of singleline or multiline setting
  2. use lazy match *? to allow multiple such groups to be matched individually

Cheers
Andi

modified 7-Apr-12 18:59pm.

GeneralRe: How to regex this Pin
Lutosław7-Apr-12 13:11
Lutosław7-Apr-12 13:11 
QuestionCan anybody explain how this Regex works. Pin
fiaolle15-Nov-11 2:26
fiaolle15-Nov-11 2:26 
AnswerRe: Can anybody explain how this Regex works. Pin
PIEBALDconsult15-Nov-11 5:04
mvePIEBALDconsult15-Nov-11 5:04 
GeneralRe: Can anybody explain how this Regex works. Pin
fiaolle15-Nov-11 6:08
fiaolle15-Nov-11 6:08 
GeneralRe: Can anybody explain how this Regex works. Pin
PIEBALDconsult15-Nov-11 6:34
mvePIEBALDconsult15-Nov-11 6:34 
GeneralRe: Can anybody explain how this Regex works. Pin
fiaolle15-Nov-11 6:45
fiaolle15-Nov-11 6:45 
GeneralRe: Can anybody explain how this Regex works. Pin
PIEBALDconsult15-Nov-11 13:46
mvePIEBALDconsult15-Nov-11 13:46 
GeneralRe: Can anybody explain how this Regex works. Pin
Andreas Gieriet8-Apr-12 1:02
professionalAndreas Gieriet8-Apr-12 1:02 
AnswerRe: Can anybody explain how this Regex works. Pin
Andreas Gieriet7-Apr-12 12:06
professionalAndreas Gieriet7-Apr-12 12:06 
QuestionUrl rewriting rule Pin
Gaurav Goel (Team Lead)13-Sep-11 0:18
professionalGaurav Goel (Team Lead)13-Sep-11 0:18 
AnswerRe: Url rewriting rule Pin
Shahriar Iqbal Chowdhury/Galib24-Sep-11 11:00
professionalShahriar Iqbal Chowdhury/Galib24-Sep-11 11:00 
AnswerRe: Url rewriting rule Pin
AspDotNetDev24-Sep-11 11:37
protectorAspDotNetDev24-Sep-11 11:37 
QuestionRegular expression to check special character Pin
sri_34648-Sep-11 11:16
sri_34648-Sep-11 11:16 
AnswerRe: Regular expression to check special character Pin
Mizard X25-Sep-11 0:06
Mizard X25-Sep-11 0:06 
QuestionHelp with pattern Pin
Phrone7-Sep-11 20:25
Phrone7-Sep-11 20:25 
AnswerRe: Help with pattern Pin
thatraja28-Nov-11 19:10
professionalthatraja28-Nov-11 19:10 
QuestionWhat is the Regular expression that detects a $ sign and digits in html code Pin
Member 82168286-Sep-11 7:49
Member 82168286-Sep-11 7:49 

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.