Click here to Skip to main content
15,891,248 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert double to PointF coord?? Pin
Daniel Turini26-Aug-05 15:40
Daniel Turini26-Aug-05 15:40 
GeneralRe: Convert double to PointF coord?? Pin
Colin Angus Mackay26-Aug-05 20:03
Colin Angus Mackay26-Aug-05 20:03 
QuestionRegex Pin
surfman1926-Aug-05 13:07
surfman1926-Aug-05 13:07 
AnswerRe: Regex Pin
Uri Lavi26-Aug-05 23:27
Uri Lavi26-Aug-05 23:27 
GeneralRe: Regex Pin
surfman1927-Aug-05 0:04
surfman1927-Aug-05 0:04 
GeneralRe: Regex Pin
Uri Lavi27-Aug-05 1:25
Uri Lavi27-Aug-05 1:25 
GeneralRe: Regex Pin
surfman1927-Aug-05 1:50
surfman1927-Aug-05 1:50 
AnswerRe: Regex Pin
Uri Lavi27-Aug-05 2:39
Uri Lavi27-Aug-05 2:39 
Hi,
* use the following expr. @"(?>\w|\d)+;?)"
* use the Matches method and not the Match method as follows:

ArrayList Numbers = new ArrayList(); <br />
Regex regex = new Regex(@"(?>\w|\d)+;?");  // only for 3 like "Gerald; 0650123456; Mike" ;-((((<br />
MatchCollection collection = regex.Matches("Gerald; 0650123456; Sabine; Spech; 06761233333");<br />
foreach(Match m in collection)<br />
{<br />
	Console.WriteLine("**" + m.Value);<br />
}


-- modified at 12:12 Saturday 27th August, 2005
GeneralRe: Regex Pin
surfman1927-Aug-05 9:25
surfman1927-Aug-05 9:25 
GeneralRe: Regex Pin
Uri Lavi27-Aug-05 10:44
Uri Lavi27-Aug-05 10:44 
GeneralRe: Regex Pin
surfman1927-Aug-05 11:14
surfman1927-Aug-05 11:14 
QuestionPretty technical bugger. Pin
ldle26-Aug-05 12:24
ldle26-Aug-05 12:24 
AnswerRe: Pretty technical bugger. Pin
Mike Dimmick26-Aug-05 13:01
Mike Dimmick26-Aug-05 13:01 
GeneralRe: Pretty technical bugger. Pin
Alomgir Miah26-Aug-05 18:16
Alomgir Miah26-Aug-05 18:16 
Questionform close Pin
mpastchenko26-Aug-05 11:34
mpastchenko26-Aug-05 11:34 
QuestionRe: form close Pin
eggie526-Aug-05 12:13
eggie526-Aug-05 12:13 
AnswerRe: form close Pin
mpastchenko26-Aug-05 14:07
mpastchenko26-Aug-05 14:07 
AnswerRe: form close Pin
mpastchenko26-Aug-05 14:22
mpastchenko26-Aug-05 14:22 
GeneralRe: form close Pin
mpastchenko16-Sep-05 12:27
mpastchenko16-Sep-05 12:27 
Questionc# procedure Pin
Jassim Rahma26-Aug-05 10:39
Jassim Rahma26-Aug-05 10:39 
AnswerRe: c# procedure Pin
Colin Angus Mackay26-Aug-05 11:24
Colin Angus Mackay26-Aug-05 11:24 
GeneralRe: c# procedure Pin
Jassim Rahma26-Aug-05 12:52
Jassim Rahma26-Aug-05 12:52 
GeneralRe: c# procedure Pin
Dave Kreskowiak26-Aug-05 14:20
mveDave Kreskowiak26-Aug-05 14:20 
GeneralRe: c# procedure Pin
Jassim Rahma26-Aug-05 20:48
Jassim Rahma26-Aug-05 20:48 
GeneralRe: c# procedure Pin
Dave Kreskowiak27-Aug-05 2:59
mveDave Kreskowiak27-Aug-05 2:59 

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.