Regular expression in C#

Posted by user340015 on Stack Overflow See other posts from Stack Overflow or by user340015
Published on 2010-05-13T07:07:16Z Indexed on 2010/05/13 7:14 UTC
Read the original article Hit count: 411

Filed under:
|
|
|

i have text something like this.

@@MMIVLoader@[email protected]@BCM_7400S_LE@Product@Aug 21 2009@
@@MMIVLib@[email protected]@BCM_7400S_LE@Product@Aug 21 2009@
@@HuaweFGDLDrv@[email protected]@7324@PRODUCT@Aug 20 2009@
@@ProtectVer@[email protected] @BCM_SDE5.03@PRODUCT@Aug 4 2009 06:56:19@
@@KernelSw@[email protected]@BCM-7454@PRODUCT@ Dec 19 2007@
@@ReceiverSw@[email protected]@HWBC01ZS@PRODUCT@May 3 2010@

i want the out put in an array like

MMIVLoader 4.1.2
MMIVLib         4.1.2
HuaweFGDLDrv 01.00.09
ProtectVer 127.8.1 
KernelSw 0.0.1
ReceiverSw E.5.6.001

Can any one suggest me how to do this in c# using regular expression or is there a any sophisticated way to do this

thanks in advance

© Stack Overflow or respective owner

Related posts about string

Related posts about text-parsing