473,796 Members | 2,904 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

regex pro

here's the deal...cvs, tick encapsulted data. trying to use regex's to
validate records. here's an example row:

'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99',''
,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST'

record type is in the 8th column ('1278'). using regex b/c there are a
miriad of types that cause other data w/n the record (or related records) to
be in/valid. i'm having problems getting a match on the generalization of
the first 7 columns:

something like this:

(?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))

(?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.

if someone can help me generalize that patter, i'd appreciate it very much.

tia,

steve
Nov 20 '05 #1
17 1656
good thing i posted the explaination of the problem...lead me right to the
solution. record type is in column 7!!!

(?=(?:(?<!','). *(?!=',')',')){ 8}('((12((7[89])|(8[0-7])|(9[0-468])))|(13((0[
0-3])|(1[16])|(2[0135])))|1612)')

thanks for looking though...if you did.

;^)

"steve" <a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
| here's the deal...cvs, tick encapsulted data. trying to use regex's to
| validate records. here's an example row:
|
|
'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99',''
| ,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST'
|
| record type is in the 8th column ('1278'). using regex b/c there are a
| miriad of types that cause other data w/n the record (or related records)
to
| be in/valid. i'm having problems getting a match on the generalization of
| the first 7 columns:
|
| something like this:
|
| (?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))
|
| (?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.
|
| if someone can help me generalize that patter, i'd appreciate it very
much.
|
| tia,
|
| steve
|
|
Nov 20 '05 #2
Hi,

Regular expression tester.
http://royo.is-a-geek.com/iserializable/regulator/

Ken
----------------

"steve" <a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com:
good thing i posted the explaination of the problem...lead me right to the

solution. record type is in column 7!!!
(?=(?:(?<!','). *(?!=',')',')){ 8}('((12((7[89])|(8[0-7])|(9[0-468])))|(13((0[

0-3])|(1[16])|(2[0135])))|1612)')

thanks for looking though...if you did.

;^)

"steve" <HYPERLINK "mailto:a@b.com "a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
| here's the deal...cvs, tick encapsulted data. trying to use regex's to

| validate records. here's an example row:
|
|

'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99',''

| ,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST'
|
| record type is in the 8th column ('1278'). using regex b/c there are a

| miriad of types that cause other data w/n the record (or related
records)
to
| be in/valid. i'm having problems getting a match on the generalization
of
| the first 7 columns:
|
| something like this:
|
| (?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))
|
| (?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.
|
| if someone can help me generalize that patter, i'd appreciate it very
much.
|
| tia,
|
| steve
|
|


--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.0 - Release Date: 6/12/2004
Nov 20 '05 #3
Glad u solved it.

I personally hate RegExp, I know often there is little other sensible or
efficient way of doing stuff without it, but I still really really hate it.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
"steve" <a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
good thing i posted the explaination of the problem...lead me right to the
solution. record type is in column 7!!!

(?=(?:(?<!','). *(?!=',')',')){ 8}('((12((7[89])|(8[0-7])|(9[0-468])))|(13((0[ 0-3])|(1[16])|(2[0135])))|1612)')

thanks for looking though...if you did.

;^)

"steve" <a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
| here's the deal...cvs, tick encapsulted data. trying to use regex's to
| validate records. here's an example row:
|
|
'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99','' | ,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST'
|
| record type is in the 8th column ('1278'). using regex b/c there are a
| miriad of types that cause other data w/n the record (or related records) to
| be in/valid. i'm having problems getting a match on the generalization of | the first 7 columns:
|
| something like this:
|
| (?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))
|
| (?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.
|
| if someone can help me generalize that patter, i'd appreciate it very
much.
|
| tia,
|
| steve
|
|

Nov 20 '05 #4
depends on what you need to use it for. in this instance, it saves my remote
app from having to program for the business rules applied formally on
another, remote server. a generic way for the remote server to tell my
application what a valid set of results should "look like". otherwise, i'd
have fun rebuilding and deploying my app each time new or changed rules
appeared. each "rule" gets a description, whether or not the pattern should
match (exist)...etc. works great...and, all i have to do is collect the
rules.

hate's a strong word...regex is, or s/b, you're best friend when dealing w/
text. there's no tool in my toolbox that i wouldn't give up first b4 a good
regex program.

but, to each their own.
"One Handed Man ( OHM - Terry Burns )" <news.microsoft .com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
| Glad u solved it.
|
| I personally hate RegExp, I know often there is little other sensible or
| efficient way of doing stuff without it, but I still really really hate
it.
|
| --
|
| OHM ( Terry Burns )
| . . . One-Handed-Man . . .
|
|
| "steve" <a@b.com> wrote in message
| news:10******** *****@corp.supe rnews.com...
| > good thing i posted the explaination of the problem...lead me right to
the
| > solution. record type is in column 7!!!
| >
| >
|
(?=(?:(?<!','). *(?!=',')',')){ 8}('((12((7[89])|(8[0-7])|(9[0-468])))|(13((0[
| > 0-3])|(1[16])|(2[0135])))|1612)')
| >
| > thanks for looking though...if you did.
| >
| > ;^)
| >
| > "steve" <a@b.com> wrote in message
| > news:10******** *****@corp.supe rnews.com...
| > | here's the deal...cvs, tick encapsulted data. trying to use regex's to
| > | validate records. here's an example row:
| > |
| > |
| >
|
'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99',''
| > | ,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST'
| > |
| > | record type is in the 8th column ('1278'). using regex b/c there are a
| > | miriad of types that cause other data w/n the record (or related
| records)
| > to
| > | be in/valid. i'm having problems getting a match on the generalization
| of
| > | the first 7 columns:
| > |
| > | something like this:
| > |
| > | (?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))
| > |
| > | (?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.
| > |
| > | if someone can help me generalize that patter, i'd appreciate it very
| > much.
| > |
| > | tia,
| > |
| > | steve
| > |
| > |
| >
| >
|
|
Nov 20 '05 #5
thanks ken...read about it in the msdn mag too. i have it and only have a
couple of issues w/ it. i also have a couple of other .net based regex
validators i've found on the net as well. they're all helpful. as is your
response.

thanks again,

steve
"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:u3******** *****@TK2MSFTNG P12.phx.gbl...
| Hi,
|
| Regular expression tester.
| http://royo.is-a-geek.com/iserializable/regulator/
|
| Ken
| ----------------
|
| "steve" <a@b.com> wrote in message
| news:10******** *****@corp.supe rnews.com:
| > good thing i posted the explaination of the problem...lead me right to
the
| >
| > solution. record type is in column 7!!!
| >
| >
| >
(?=(?:(?<!','). *(?!=',')',')){ 8}('((12((7[89])|(8[0-7])|(9[0-468])))|(13((0[
| >
| > 0-3])|(1[16])|(2[0135])))|1612)')
| >
| > thanks for looking though...if you did.
| >
| > ;^)
| >
| > "steve" <HYPERLINK "mailto:a@b.com "a@b.com> wrote in message
| > news:10******** *****@corp.supe rnews.com...
| > | here's the deal...cvs, tick encapsulted data. trying to use regex's to
| >
| > | validate records. here's an example row:
| > |
| > |
| >
| >
'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99',''
| >
| > | ,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST'
| > |
| > | record type is in the 8th column ('1278'). using regex b/c there are a
| >
| > | miriad of types that cause other data w/n the record (or related
| > records)
| > to
| > | be in/valid. i'm having problems getting a match on the generalization
| > of
| > | the first 7 columns:
| > |
| > | something like this:
| > |
| > | (?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))
| > |
| > | (?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.
| > |
| > | if someone can help me generalize that patter, i'd appreciate it very
| > much.
| > |
| > | tia,
| > |
| > | steve
| > |
| > |
| >
|
| --
| Outgoing mail is certified Virus Free.
| Checked by AVG Anti-Virus (http://www.grisoft.com).
| Version: 7.0.230 / Virus Database: 263.3.0 - Release Date: 6/12/2004
|
|
Nov 20 '05 #6
Well, I know its versitile, I accept that, its just that is seems so, so
'Unixy' like

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
"steve" <a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
depends on what you need to use it for. in this instance, it saves my remote app from having to program for the business rules applied formally on
another, remote server. a generic way for the remote server to tell my
application what a valid set of results should "look like". otherwise, i'd
have fun rebuilding and deploying my app each time new or changed rules
appeared. each "rule" gets a description, whether or not the pattern should match (exist)...etc. works great...and, all i have to do is collect the
rules.

hate's a strong word...regex is, or s/b, you're best friend when dealing w/ text. there's no tool in my toolbox that i wouldn't give up first b4 a good regex program.

but, to each their own.
"One Handed Man ( OHM - Terry Burns )" <news.microsoft .com> wrote in message news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
| Glad u solved it.
|
| I personally hate RegExp, I know often there is little other sensible or
| efficient way of doing stuff without it, but I still really really hate
it.
|
| --
|
| OHM ( Terry Burns )
| . . . One-Handed-Man . . .
|
|
| "steve" <a@b.com> wrote in message
| news:10******** *****@corp.supe rnews.com...
| > good thing i posted the explaination of the problem...lead me right to
the
| > solution. record type is in column 7!!!
| >
| >
|
(?=(?:(?<!','). *(?!=',')',')){ 8}('((12((7[89])|(8[0-7])|(9[0-468])))|(13((0[ | > 0-3])|(1[16])|(2[0135])))|1612)')
| >
| > thanks for looking though...if you did.
| >
| > ;^)
| >
| > "steve" <a@b.com> wrote in message
| > news:10******** *****@corp.supe rnews.com...
| > | here's the deal...cvs, tick encapsulted data. trying to use regex's to | > | validate records. here's an example row:
| > |
| > |
| >
|
'AD,'BF','13246 5','06/09/2004','','BNSF' ,'A','TYPE','12 78','','BR','29 99','' | > | ,'LX','','01',' 09','1','','',' ','','','','',' ','CUSTOM JOB CODE TEST' | > |
| > | record type is in the 8th column ('1278'). using regex b/c there are a | > | miriad of types that cause other data w/n the record (or related
| records)
| > to
| > | be in/valid. i'm having problems getting a match on the generalization | of
| > | the first 7 columns:
| > |
| > | something like this:
| > |
| > | (?=(?:(?<!','). *(?!=',')',')){ 7}(?:'1278(?=', '))
| > |
| > | (?=(?:(?<!','). *(?!=',')',')){ 7} represents the first 7 colums.
| > |
| > | if someone can help me generalize that patter, i'd appreciate it very | > much.
| > |
| > | tia,
| > |
| > | steve
| > |
| > |
| >
| >
|
|

Nov 20 '05 #7
Hi Terry,

I have again exactly the same idea about it as you, I call it scripting
like.

Cor
Nov 20 '05 #8
it has nothing to do w/ unix. even vb.not.net and vb.net have a "like"
statement. consider a regex to be like "like" on acid. it also has nothing
to do with scripting. it is simply the best way to recognize/find patterns
w/n text w/o having to know exactly what the pattern is or what the text to
be search is before hand.

whether or not it is "unixy" or "scriptish" , why start discarding
options/tools based on something other than performance, flexibility, or
cost? that's dangerous programming in a project manager's mind.
"Cor Ligthert" <no**********@p lanet.nl> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
| Hi Terry,
|
| I have again exactly the same idea about it as you, I call it scripting
| like.
|
| Cor
|
|
Nov 20 '05 #9
I dont discard it. I simply dont like it, everytime I look at a complex
regExp, it reminds me of the old days where people used to cram code in so
tight because of memory constraints that it was unreadable, or of die hard C
programmers who like to write code which is impossible to undersrtand.

Thats my point. If you dont agree with me, then thats fine.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
"steve" <a@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
it has nothing to do w/ unix. even vb.not.net and vb.net have a "like"
statement. consider a regex to be like "like" on acid. it also has nothing
to do with scripting. it is simply the best way to recognize/find patterns
w/n text w/o having to know exactly what the pattern is or what the text to be search is before hand.

whether or not it is "unixy" or "scriptish" , why start discarding
options/tools based on something other than performance, flexibility, or
cost? that's dangerous programming in a project manager's mind.
"Cor Ligthert" <no**********@p lanet.nl> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
| Hi Terry,
|
| I have again exactly the same idea about it as you, I call it scripting
| like.
|
| Cor
|
|

Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2087
by: Jon Maz | last post by:
Hi All, Am getting frustrated trying to port the following (pretty simple) function to CSharp. The problem is that I'm lousy at Regular Expressions.... //from http://support.microsoft.com/default.aspx?scid=kb;EN-US;246800 function fxnParseIt() { var sInputString = 'asp and database';
9
4592
by: Tim Conner | last post by:
Is there a way to write a faster function ? public static bool IsNumber( char Value ) { if (Regex.IsMatch( Value.ToString(), @"^+$" )) { return true; } else return false; }
20
8119
by: jeevankodali | last post by:
Hi I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex matches are called within a loop (like if or for). E.g. for(int i = 0; i < 10; i++) { Regex r = new Regex();
17
3982
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher http://forta.com/books/0672325667/
6
2503
by: Extremest | last post by:
I have a huge regex setup going on. If I don't do each one by itself instead of all in one it won't work for. Also would like to know if there is a faster way tried to use string.replace with all the right parts in there in one big line and for some reason that did not work either. Here is my regex's. static Regex rar = new Regex("\\.part.*", RegexOptions.IgnoreCase); static Regex par = new Regex("\\.vol.*", RegexOptions.IgnoreCase);
7
2590
by: Extremest | last post by:
I am using this regex. static Regex paranthesis = new Regex("(\\d*/\\d*)", RegexOptions.IgnoreCase); it should find everything between parenthesis that have some numbers onyl then a forward slash then some numbers. For some reason I am not getting that. It won't work at all in 2.0
3
2703
by: aspineux | last post by:
My goal is to write a parser for these imaginary string from the SMTP protocol, regarding RFC 821 and 1869. I'm a little flexible with the BNF from these RFC :-) Any comment ? tests= def RN(name, regex): """protect using () and give an optional name to a regex""" if name:
15
50264
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
4
2673
by: CJ | last post by:
Is this the format to parse a string and return the value between the item? Regex pRE = new Regex("<File_Name>.*>(?<insideText>.*)</File_Name>"); I am trying to parse this string. <File_Name>Services</File_Name> Thanks
0
1735
by: Karch | last post by:
I have these two methods that are chewing up a ton of CPU time in my application. Does anyone have any suggestions on how to optimize them or rewrite them without Regex? The most time-consuming operation by a long-shot is the regex.Replace. Basically the only purpose of it is to remove spaces between opening/closing tags and the element name. Surely there is a better way. private string FixupJavascript(string htmlCode) { string result...
0
10467
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10244
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10201
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9061
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7558
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6802
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4130
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2931
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.