Click here to Skip to main content
15,891,751 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Determine if .NET Framework is installed Pin
John Arlen127-May-05 15:04
John Arlen127-May-05 15:04 
GeneralRe: Determine if .NET Framework is installed Pin
Christian Graus25-May-05 16:31
protectorChristian Graus25-May-05 16:31 
GeneralRe: Determine if .NET Framework is installed Pin
LiamD25-May-05 21:14
LiamD25-May-05 21:14 
GeneralRe: Determine if .NET Framework is installed Pin
Christian Graus26-May-05 11:33
protectorChristian Graus26-May-05 11:33 
GeneralRe: Determine if .NET Framework is installed Pin
asm12327-May-05 10:51
asm12327-May-05 10:51 
Generalcomponent securiry Pin
peepys24-May-05 19:46
peepys24-May-05 19:46 
GeneralRe: component securiry Pin
Nish Nishant25-May-05 1:34
sitebuilderNish Nishant25-May-05 1:34 
GeneralRegEx Parsing problem Pin
vonlar24-May-05 17:58
vonlar24-May-05 17:58 
String 1 is the regex parsing string. String 2 is the string I am trying to parse. Note that String 2 is a continuous line and therefore it is matching almost everything in (?<report_desc>.+) part of the parser.

Anyone know how I can get around this?

String 1:
StatusArray\[\d+\] = "(?<status>.)";JodIdArray\[\d+\] = "(?<job_id>\d+)";FormatTypeArray\[\d+\] = "(?<format_type>\d+)";FileNameArray\[\d+\] = "(?<filename>\w*)";FileExtArray\[\d+\] = "(?<file_extension>\w{3})";ReqNameArray\[\d+\] = trimAll\(\"(?<report_desc>.+)"\);ApplId\[\d+\] = "(?<app_id>\d+)";ExeId\[\d+\] = "(?<exe_id>\d+)";Qid\[\d+\] = "(?<query_id>\w+)";DivId\[\d+\] = "(?<div_id>\d+)";CountryId\[\d+\] = "(?<country_id>..)"

String 2:
StatusArray[0] = "E";JodIdArray[0] = "98155582";FormatTypeArray[0] = "1";FileNameArray[0] = "_98155582_";FileExtArray[0] = "zip";ReqNameArray[0] = trimAll(" WF Product Characteristics- Comp Stores ");ApplId[0] = "300";ExeId[0] = "264";Qid[0] = "Q680";DivId[0] = "1";CountryId[0] = "US";StatusArray[1] = "N";JodIdArray[1] = "98110301";FormatTypeArray[1] = "1";FileNameArray[1] = "_98110301_";FileExtArray[1] = "xls";ReqNameArray[1] = trimAll(" Trash supply metrics - total stores D14 ");ApplId[1] = "300";ExeId[1] = "263";Qid[1] = "Q10001";DivId[1] = "1";CountryId[1] = "US";StatusArray[2] = "N";JodIdArray[2] = "98110298";FormatTypeArray[2] = "4";FileNameArray[2] = "_98110298_";FileExtArray[2] = "zip";ReqNameArray[2] = trimAll(" IT - US - WM - POS Sales - ItemWeekStoreType - Dept 93-99 - LY ");ApplId[2] = "300";ExeId[2] = "264";Qid[2] = "Q680";DivId[2] = "1";CountryId[2] = "US";StatusArray[3] = "N";JodIdArray[3] = "98110290";FormatTypeArray[3] = "4";FileNameArray[3] = "_98110290_";FileExtArray[3] = "zip";ReqNameArray[3] = trimAll(" IT - US - WM - POS Sales - ItemWeekStoreType - Dept 93-99 - TY ");ApplId[3] = "300";ExeId[3] = "264";Qid[3] = "Q680";DivId[3] = "1";CountryId[3] = "US";StatusArray[4] = "E";JodIdArray[4] = "98110213";FormatTypeArray[4] = "4";FileNameArray[4] = "_98110213_";FileExtArray[4] = "zip";ReqNameArray[4] = trimAll(" IT - US - Sales - Velocity by ItemStoreWeek - TY ");ApplId[4] = "300";ExeId[4] = "264";Qid[4] = "Q680";DivId[4] = "1";CountryId[4] = "US";StatusArray[5] = "E";JodIdArray[5] = "98110212";FormatTypeArray[5] = "4";FileNameArray[5] = "_98110212_";FileExtArray[5] = "zip";ReqNameArray[5] = trimAll(" IT - US - Sales - Velocity by ItemWeek ");ApplId[5] = "300";ExeId[5] = "264";Qid[5] = "Q680";DivId[5] = "1";CountryId[5] = "US";StatusArray[6] = "N";JodIdArray[6] = "98076304";FormatTypeArray[6] = "4";FileNameArray[6] = "_98076304_";FileExtArray[6] = "zip";ReqNameArray[6] = trimAll(" BR - Instocks ");ApplId[6] = "300";ExeId[6] = "313";Qid[6] = "Q10401";DivId[6] = "1";CountryId[6] = "BR";StatusArray[7] = "N";JodIdArray[7] = "98042022";FormatTypeArray[7] = "4";FileNameArray[7] = "_98042022_";FileExtArray[7] = "zip";ReqNameArray[7] = trimAll(" EDM_EVERYDAY_Daily_WM_POS_DOWNLOAD ");ApplId[7] = "300";ExeId[7] = "264";Qid[7] = "Q680";DivId[7] = "1";CountryId[7] = "US";StatusArray[8] = "N";JodIdArray[8] = "98042017";FormatTypeArray[8] = "4";FileNameArray[8] = "_98042017_";FileExtArray[8] = "zip";ReqNameArray[8] = trimAll(" EDM_FRI_Daily_WM_POS_DOWNLOAD ");ApplId[8] = "300";ExeId[8] = "264";Qid[8] = "Q680";DivId[8] = "1";CountryId[8] = "US";

GeneralRe: RegEx Parsing problem Pin
Christian Graus25-May-05 16:33
protectorChristian Graus25-May-05 16:33 
GeneralJoinMulticastGroup Exception Pin
rensyl23-May-05 8:37
rensyl23-May-05 8:37 
GeneralRe: JoinMulticastGroup Exception Pin
Mike Dimmick24-May-05 12:20
Mike Dimmick24-May-05 12:20 
QuestionAnyone know how to sum as decimal in SQLCE database? Pin
Member 193588023-May-05 7:23
Member 193588023-May-05 7:23 
GeneralBasic Executable Icon Pin
pcxboy23-May-05 4:11
pcxboy23-May-05 4:11 
GeneralRe: Basic Executable Icon Pin
MoustafaS23-May-05 5:15
MoustafaS23-May-05 5:15 
GeneralRe: Basic Executable Icon Pin
pcxboy23-May-05 11:01
pcxboy23-May-05 11:01 
GeneralRe: Basic Executable Icon Pin
MoustafaS23-May-05 11:34
MoustafaS23-May-05 11:34 
GeneralRe: Basic Executable Icon Pin
MoustafaS23-May-05 5:18
MoustafaS23-May-05 5:18 
GeneralRe: Basic Executable Icon Pin
Marc Clifton23-May-05 10:04
mvaMarc Clifton23-May-05 10:04 
GeneralRe: Basic Executable Icon Pin
pcxboy23-May-05 11:00
pcxboy23-May-05 11:00 
GeneralRe: Basic Executable Icon Pin
Anonymous24-May-05 8:04
Anonymous24-May-05 8:04 
GeneralRe: Basic Executable Icon Pin
pcxboy24-May-05 8:07
pcxboy24-May-05 8:07 
GeneralWMI Win32_process exited... Pin
haimlz23-May-05 3:32
haimlz23-May-05 3:32 
QuestionHow to access .net webservice from .net compace framework Pin
Member 24341323-May-05 2:04
Member 24341323-May-05 2:04 
AnswerRe: How to access .net webservice from .net compace framework Pin
Eirik Hoem25-May-05 23:09
sussEirik Hoem25-May-05 23:09 
GeneralTo send live audio &amp; video data on network. Pin
shumyla198323-May-05 1:10
shumyla198323-May-05 1:10 

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.