Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
GeneralRe: An interesting question I think Pin
TheFLC7-Oct-02 23:50
TheFLC7-Oct-02 23:50 
GeneralRe: An interesting question I think Pin
leppie8-Oct-02 2:44
leppie8-Oct-02 2:44 
GeneralRe: An interesting question I think Pin
TheFLC8-Oct-02 2:10
TheFLC8-Oct-02 2:10 
QuestionA memory eater app... what could be wrong?? Pin
Anonymous7-Oct-02 14:11
Anonymous7-Oct-02 14:11 
AnswerRe: A memory eater app... what could be wrong?? Pin
David Stone7-Oct-02 17:36
sitebuilderDavid Stone7-Oct-02 17:36 
AnswerRe: A memory eater app... what could be wrong?? Pin
Daniel Turini8-Oct-02 1:48
Daniel Turini8-Oct-02 1:48 
GeneralC# under SuSe Linux Pin
gremlin7-Oct-02 13:13
gremlin7-Oct-02 13:13 
GeneralRe: C# under SuSe Linux Pin
Gerald Schwab7-Oct-02 13:17
Gerald Schwab7-Oct-02 13:17 
GeneralPlaying raw audio samples Pin
David Williams7-Oct-02 12:45
David Williams7-Oct-02 12:45 
GeneralRe: Playing raw audio samples Pin
leppie7-Oct-02 14:50
leppie7-Oct-02 14:50 
GeneralIE History Pin
Tomas Petricek7-Oct-02 12:31
Tomas Petricek7-Oct-02 12:31 
GeneralRe: IE History Pin
Stephane Rodriguez.7-Oct-02 23:23
Stephane Rodriguez.7-Oct-02 23:23 
GeneralRe: IE History Pin
Tomas Petricek8-Oct-02 1:33
Tomas Petricek8-Oct-02 1:33 
GeneralNotifyIcon does not pass correct coordinates Pin
Joshua Nussbaum7-Oct-02 11:52
Joshua Nussbaum7-Oct-02 11:52 
GeneralCan't set breakpoints in release mode Pin
Marc Clifton7-Oct-02 10:32
mvaMarc Clifton7-Oct-02 10:32 
GeneralRe: Can't set breakpoints in release mode Pin
Dave Moor7-Oct-02 10:44
Dave Moor7-Oct-02 10:44 
GeneralScrolling a Listview in C# Pin
RK_20007-Oct-02 9:36
RK_20007-Oct-02 9:36 
GeneralRe: Scrolling a Listview in C# Pin
John Hurrell7-Oct-02 10:18
John Hurrell7-Oct-02 10:18 
GeneralXMLA Function Parser Pin
Anonymous7-Oct-02 7:54
Anonymous7-Oct-02 7:54 
GeneralPrint function Pin
D Shen7-Oct-02 7:39
D Shen7-Oct-02 7:39 
GeneralRe: Print function Pin
shmuelt8-Oct-02 0:40
shmuelt8-Oct-02 0:40 
GeneralOverriding base collections and using PropertyGrid Pin
Zombies with Coffee, LLC7-Oct-02 5:51
professionalZombies with Coffee, LLC7-Oct-02 5:51 
GeneralRe: Overriding base collections and using PropertyGrid Pin
leppie7-Oct-02 7:13
leppie7-Oct-02 7:13 
GeneralMatch and Regular Expression Pin
mkomasi7-Oct-02 3:58
mkomasi7-Oct-02 3:58 
GeneralRe: Match and Regular Expression Pin
Paul Riley7-Oct-02 4:59
Paul Riley7-Oct-02 4:59 
Not easily, but you could use Regex.Split(expr, "), (|(|)") to break it down to
str[0] = "";
str[1] = "X, <os:size>, Z";
str[2] = "X, <os:type>, Y";
str[3] = "X, <os:datemodified>, W";
str[4] = "X, <pdf:title>, U";
str[5] = "";

OR you could use Regex.Match to create a MatchCollection. It might be a fairly complicated Expression though, something like @"\(\S,\s\S+,\s\S\)" I dunno, I just pulled that off the top of my head. I'm not sure if a "(" can be denoted as "\(" or not. \S is non-whitespace, \S+ is multiple non-whitespace, \s is whitespace.

Paul

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.