B
Barry
Hello
Regex regex = new
Regex("((?<field>[^\",\r\n]+)|\"(?<field>([^\"]|\"\")+)\")(,|(?<rowbreak>\\r\\n|\\n|$))");
The above regualr expression return 24 fields instead of 42 for the record
below, it ignores empty fields like ,,,"Hello World",,,,,
1002,Jack,Wack,23772 East Rd,,Georgestown Twp,VA,48183,United
States,999-966-9735,Jack,Wack,23772 East Rd,,Georgtown Twp,VA,12283,United
States,519-966-9735,501,,Y,0,4/27/2007 15:04,5/10/2007
12:50,Shipped,,,,Regular Processing,,,,,,,,,,,
can some Regex expert help
TIA
Barry
Regex regex = new
Regex("((?<field>[^\",\r\n]+)|\"(?<field>([^\"]|\"\")+)\")(,|(?<rowbreak>\\r\\n|\\n|$))");
The above regualr expression return 24 fields instead of 42 for the record
below, it ignores empty fields like ,,,"Hello World",,,,,
1002,Jack,Wack,23772 East Rd,,Georgestown Twp,VA,48183,United
States,999-966-9735,Jack,Wack,23772 East Rd,,Georgtown Twp,VA,12283,United
States,519-966-9735,501,,Y,0,4/27/2007 15:04,5/10/2007
12:50,Shipped,,,,Regular Processing,,,,,,,,,,,
can some Regex expert help
TIA
Barry