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

.NET (Core and Framework)

 
GeneralMystified by ExpandableObjectConverter Pin
RobRichardson15-Oct-04 9:06
RobRichardson15-Oct-04 9:06 
GeneralProblems with version 1.1.4322 ! Pin
vilmarbr13-Oct-04 9:25
vilmarbr13-Oct-04 9:25 
GeneralRe: Problems with version 1.1.4322 ! Pin
vilmarbr15-Oct-04 5:55
vilmarbr15-Oct-04 5:55 
Generalneed help for a standalone application Pin
Ibana13-Oct-04 1:17
Ibana13-Oct-04 1:17 
GeneralRe: need help for a standalone application Pin
Colin Angus Mackay13-Oct-04 2:31
Colin Angus Mackay13-Oct-04 2:31 
GeneralVSS Pin
kcheng7112-Oct-04 6:43
kcheng7112-Oct-04 6:43 
GeneralCustom Print DIalog Pin
sarya7812-Oct-04 4:37
sarya7812-Oct-04 4:37 
GeneralSaving a TextBox with Its Format Pin
njppp12-Oct-04 1:10
njppp12-Oct-04 1:10 
GeneralRe: Saving a TextBox with Its Format Pin
J4amieC12-Oct-04 1:25
J4amieC12-Oct-04 1:25 
QuestionHow to make C# application run on win2000 and WinMe and Win98? Pin
momer11-Oct-04 1:24
momer11-Oct-04 1:24 
AnswerRe: How to make C# application run on win2000 and WinMe and Win98? Pin
Vasudevan Deepak Kumar13-Oct-04 2:02
Vasudevan Deepak Kumar13-Oct-04 2:02 
QuestionHowTo copy a folder with all permissions? Pin
akum10-Oct-04 22:40
akum10-Oct-04 22:40 
GeneralError: usbtest(Cs).exe----cannt find DLL Pin
momer10-Oct-04 19:23
momer10-Oct-04 19:23 
GeneralRe: Error: usbtest(Cs).exe----cannt find DLL Pin
J4amieC11-Oct-04 0:51
J4amieC11-Oct-04 0:51 
GeneralException in SafeNativeMethods Pin
Mikke_x10-Oct-04 19:18
Mikke_x10-Oct-04 19:18 
Generalreferencing assemblies in the GAC (global assembly cache) Pin
rajrao10-Oct-04 10:38
rajrao10-Oct-04 10:38 
GeneralMicrosoft Installer does not remove assemblies from the GAC - Global Assembly Cache Pin
rajrao10-Oct-04 9:52
rajrao10-Oct-04 9:52 
GeneralRemoting to unmanaged 3ds Max plugin Pin
DonCroco9-Oct-04 1:53
DonCroco9-Oct-04 1:53 
QuestionHow to compare two files' content in C#? Pin
momer8-Oct-04 17:20
momer8-Oct-04 17:20 
AnswerRe: How to compare two files' content in C#? Pin
J4amieC11-Oct-04 0:56
J4amieC11-Oct-04 0:56 
AnswerRe: How to compare two files' content in C#? Pin
Aryo Handono21-Oct-04 2:59
professionalAryo Handono21-Oct-04 2:59 
Questionhow to owner-draw mainMenu? Pin
mickelliot8-Oct-04 14:42
mickelliot8-Oct-04 14:42 
QuestionHow to use Regular Expression to split a String Pin
Dan Dusek8-Oct-04 14:03
Dan Dusek8-Oct-04 14:03 
AnswerRe: How to use Regular Expression to split a String Pin
Tomas Petricek9-Oct-04 14:51
Tomas Petricek9-Oct-04 14:51 
Hi,
you can do this with following regular expression: '[^']*'. It returns following:
'3'
'2004/10/08/17/24/29'
'SILVACO'
'A145'
(including quotes), so you'll have to trim qotes from begining and end of each string (you can do this using Trim method).
Anyway, I think that you don't need to use regular expressions for this, because you can do this using Split method like this:
string toSplit="'3','2004/10/08/17/24/29','SILVACO','A145','00',"+
   "'5053813-07','SOCKET WRENCH','TRUBK.KLIC H55;K650,1200','3','350.48'";
string[] parts=("',"+toSplit+",'").Split("','");

Smile | :)
BTW: CZ at the end of your post means that you are from Czech republic like me Cool | :cool: ?

Tomáš Petříček (Microsoft C# MVP)
www.eeeksoft.net | Photos | Fractal Snow

GeneralBIZTALK 2004 -- Configuration Issue Pin
DotNetLearner8-Oct-04 4:42
DotNetLearner8-Oct-04 4:42 

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.