Click here to Skip to main content
15,901,283 members
Home / Discussions / C#
   

C#

 
QuestionDateTimePicker : Time-Loop -> Date-Switch Pin
Ariadne6-Feb-07 4:11
Ariadne6-Feb-07 4:11 
QuestionHelp regarding Regular Expressions [modified] Pin
anu816-Feb-07 3:08
anu816-Feb-07 3:08 
AnswerRe: Help regarding Regular Expressions Pin
Stefan Troschuetz6-Feb-07 3:12
Stefan Troschuetz6-Feb-07 3:12 
GeneralRe: Help regarding Regular Expressions Pin
anu816-Feb-07 3:18
anu816-Feb-07 3:18 
GeneralRe: Help regarding Regular Expressions Pin
Stefan Troschuetz6-Feb-07 3:31
Stefan Troschuetz6-Feb-07 3:31 
AnswerRe: Help regarding Regular Expressions Pin
gauthee6-Feb-07 3:18
gauthee6-Feb-07 3:18 
GeneralRe: Help regarding Regular Expressions Pin
anu816-Feb-07 3:22
anu816-Feb-07 3:22 
AnswerRe: Help regarding Regular Expressions Pin
baronics6-Feb-07 3:33
baronics6-Feb-07 3:33 
Try:

string test = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
string pattern = ".*(version=\".*?\").*";
string result = Regex.Match(test, pattern).Groups[1].Value;


This will match the version attribute with a result of: version="1.0"
I'm sure you will want to make this more generic.

Kathy.

AnswerRe: Help regarding Regular Expressions Pin
Colin Angus Mackay6-Feb-07 3:35
Colin Angus Mackay6-Feb-07 3:35 
AnswerRe: Help regarding Regular Expressions Pin
m@u6-Feb-07 3:36
m@u6-Feb-07 3:36 
QuestionDirectDraw can work fast ? Pin
free_soul4246-Feb-07 2:59
free_soul4246-Feb-07 2:59 
AnswerRe: DirectDraw can work fast ? Pin
Judah Gabriel Himango6-Feb-07 7:50
sponsorJudah Gabriel Himango6-Feb-07 7:50 
Questionnew textbox [modified] Pin
boss-tech6-Feb-07 2:45
boss-tech6-Feb-07 2:45 
AnswerRe: new textbox Pin
Not Active6-Feb-07 4:05
mentorNot Active6-Feb-07 4:05 
QuestionSetup project, documents and settings file Pin
phimix6-Feb-07 2:29
phimix6-Feb-07 2:29 
AnswerRe: Setup project, documents and settings file Pin
Judah Gabriel Himango6-Feb-07 7:56
sponsorJudah Gabriel Himango6-Feb-07 7:56 
GeneralRe: Setup project, documents and settings file Pin
phimix6-Feb-07 20:07
phimix6-Feb-07 20:07 
QuestionValid Access connection on other systems Pin
Butterfly_h6-Feb-07 2:04
Butterfly_h6-Feb-07 2:04 
AnswerRe: Valid Access connection on other systems Pin
Judah Gabriel Himango6-Feb-07 7:57
sponsorJudah Gabriel Himango6-Feb-07 7:57 
AnswerRe: Valid Access connection on other systems Pin
Butterfly_h6-Feb-07 9:37
Butterfly_h6-Feb-07 9:37 
QuestionDataGrid Column Width Pin
Sandrina6-Feb-07 1:55
Sandrina6-Feb-07 1:55 
AnswerRe: DataGrid Column Width Pin
gauthee6-Feb-07 2:46
gauthee6-Feb-07 2:46 
GeneralRe: DataGrid Column Width Pin
Sandrina6-Feb-07 2:55
Sandrina6-Feb-07 2:55 
GeneralRe: DataGrid Column Width Pin
Sandrina6-Feb-07 3:42
Sandrina6-Feb-07 3:42 
QuestionWindows Service Pin
Member 4273516-Feb-07 1:50
Member 4273516-Feb-07 1:50 

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.