Click here to Skip to main content
15,794,275 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
AnswerRe: Parsing ASCII-Only string Pin
Richard Deeming7-Feb-14 2:36
mveRichard Deeming7-Feb-14 2:36 
GeneralRe: Parsing ASCII-Only string Pin
Marco Bertschi7-Feb-14 2:50
professionalMarco Bertschi7-Feb-14 2:50 
GeneralRe: Parsing ASCII-Only string Pin
Richard Deeming7-Feb-14 3:04
mveRichard Deeming7-Feb-14 3:04 
QuestionRe: Parsing ASCII-Only string Pin
Marco Bertschi7-Feb-14 3:08
professionalMarco Bertschi7-Feb-14 3:08 
AnswerRe: Parsing ASCII-Only string Pin
Richard Deeming7-Feb-14 3:14
mveRichard Deeming7-Feb-14 3:14 
GeneralRe: Parsing ASCII-Only string Pin
Marco Bertschi7-Feb-14 3:33
professionalMarco Bertschi7-Feb-14 3:33 
QuestionParsing a string with match groups Pin
Dominick Marciano23-Aug-13 10:47
professionalDominick Marciano23-Aug-13 10:47 
AnswerRe: Parsing a string with match groups Pin
Matt T Heffron28-Oct-13 12:33
professionalMatt T Heffron28-Oct-13 12:33 
I'd suggest doing the matches in phases so that you can track operator presedence: and is higher presendence than or:
In fact you probably don't need to use Regex, String.Split should be able to do the job:
First divide the input based on 'and':
VB
Dim andSeparators() As String = {" and "}
Dim andTerms() as String
andTerms = String.Split(andSeparators, query)

Next for each of the andTerms do a similar String.Split on " or "
AnswerRe: Parsing a string with match groups Pin
Gabriel Szabo7-Nov-13 22:27
Gabriel Szabo7-Nov-13 22:27 
QuestionMatching a string. Pin
Septimus Hedgehog19-Aug-13 5:48
Septimus Hedgehog19-Aug-13 5:48 
AnswerRe: Matching a string. Pin
PIEBALDconsult19-Aug-13 6:03
professionalPIEBALDconsult19-Aug-13 6:03 
GeneralRe: Matching a string. Pin
Septimus Hedgehog19-Aug-13 6:27
Septimus Hedgehog19-Aug-13 6:27 
GeneralRe: Matching a string. Pin
PIEBALDconsult19-Aug-13 6:31
professionalPIEBALDconsult19-Aug-13 6:31 
GeneralRe: Matching a string. Pin
Septimus Hedgehog19-Aug-13 6:44
Septimus Hedgehog19-Aug-13 6:44 
GeneralRe: Matching a string. Pin
PIEBALDconsult19-Aug-13 10:01
professionalPIEBALDconsult19-Aug-13 10:01 
GeneralRe: Matching a string. Pin
Septimus Hedgehog20-Aug-13 0:04
Septimus Hedgehog20-Aug-13 0:04 
QuestionHelp wanted with regex format. Pin
Septimus Hedgehog31-Jul-13 4:17
Septimus Hedgehog31-Jul-13 4:17 
AnswerRe: Help wanted with regex format. Pin
Richard Deeming31-Jul-13 4:47
mveRichard Deeming31-Jul-13 4:47 
GeneralRe: Help wanted with regex format. Pin
Septimus Hedgehog31-Jul-13 4:53
Septimus Hedgehog31-Jul-13 4:53 
AnswerRe: Help wanted with regex format. Pin
OriginalGriff31-Jul-13 5:10
mvaOriginalGriff31-Jul-13 5:10 
GeneralRe: Help wanted with regex format. Pin
Septimus Hedgehog31-Jul-13 5:34
Septimus Hedgehog31-Jul-13 5:34 
GeneralRe: Help wanted with regex format. Pin
OriginalGriff31-Jul-13 5:40
mvaOriginalGriff31-Jul-13 5:40 
GeneralRe: Help wanted with regex format. Pin
Septimus Hedgehog31-Jul-13 6:15
Septimus Hedgehog31-Jul-13 6:15 
GeneralRe: Help wanted with regex format. Pin
Bernhard Hiller31-Jul-13 23:26
Bernhard Hiller31-Jul-13 23:26 
GeneralRe: Help wanted with regex format. Pin
Septimus Hedgehog1-Aug-13 0:58
Septimus Hedgehog1-Aug-13 0:58 

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.