Click here to Skip to main content
15,890,897 members
Home / Discussions / C#
   

C#

 
QuestionSocket connection exception [modified] Pin
yesu prakash16-Dec-08 20:40
yesu prakash16-Dec-08 20:40 
Questionhow to add new listview while in a child thread Pin
prasadbuddhika16-Dec-08 20:10
prasadbuddhika16-Dec-08 20:10 
AnswerRe: how to add new listview while in a child thread Pin
N a v a n e e t h16-Dec-08 20:44
N a v a n e e t h16-Dec-08 20:44 
AnswerRe: how to add new listview while in a child thread Pin
Giorgi Dalakishvili16-Dec-08 21:40
mentorGiorgi Dalakishvili16-Dec-08 21:40 
QuestionExtracting a block of text from a line Pin
Muammar©16-Dec-08 18:26
Muammar©16-Dec-08 18:26 
AnswerRe: Extracting a block of text from a line Pin
Christian Graus16-Dec-08 18:53
protectorChristian Graus16-Dec-08 18:53 
GeneralRe: Extracting a block of text from a line Pin
Muammar©16-Dec-08 21:40
Muammar©16-Dec-08 21:40 
AnswerRe: Extracting a block of text from a line Pin
Chamadness16-Dec-08 20:46
Chamadness16-Dec-08 20:46 
Use:
using System.Text.RegularExpressions.RegEx;

RegEx finder = new RegEx("( Here: #(?<Number>\\d+)#) ", RegExOptions.ExplicitCapture);

foreach(Match match in finder.Matches("xxxxx Here: #1111# Xxxxxxxx Here: #2222# xxxxx"))
{
     string number = match.Groups["Number"].Value;
}


To code, or not: Too code!

GeneralRe: Extracting a block of text from a line Pin
Muammar©16-Dec-08 22:55
Muammar©16-Dec-08 22:55 
GeneralRe: Extracting a block of text from a line Pin
Christian Graus16-Dec-08 23:09
protectorChristian Graus16-Dec-08 23:09 
GeneralRe: Extracting a block of text from a line Pin
Muammar©16-Dec-08 23:17
Muammar©16-Dec-08 23:17 
GeneralRe: Extracting a block of text from a line Pin
Muammar©16-Dec-08 23:15
Muammar©16-Dec-08 23:15 
GeneralRe: Extracting a block of text from a line Pin
#realJSOP17-Dec-08 0:31
mve#realJSOP17-Dec-08 0:31 
QuestionEnum problem in PropertyGrid Pin
Xmen Real 16-Dec-08 17:56
professional Xmen Real 16-Dec-08 17:56 
AnswerRe: Enum problem in PropertyGrid Pin
Lev Danielyan16-Dec-08 18:55
Lev Danielyan16-Dec-08 18:55 
GeneralRe: Enum problem in PropertyGrid Pin
Xmen Real 16-Dec-08 18:59
professional Xmen Real 16-Dec-08 18:59 
AnswerRe: Enum problem in PropertyGrid Pin
Lev Danielyan16-Dec-08 19:10
Lev Danielyan16-Dec-08 19:10 
GeneralRe: Enum problem in PropertyGrid Pin
Xmen Real 16-Dec-08 19:19
professional Xmen Real 16-Dec-08 19:19 
GeneralRe: Enum problem in PropertyGrid Pin
Lev Danielyan16-Dec-08 19:57
Lev Danielyan16-Dec-08 19:57 
GeneralRe: Enum problem in PropertyGrid Pin
Xmen Real 16-Dec-08 20:02
professional Xmen Real 16-Dec-08 20:02 
GeneralRe: Enum problem in PropertyGrid Pin
Lev Danielyan16-Dec-08 20:14
Lev Danielyan16-Dec-08 20:14 
GeneralRe: Enum problem in PropertyGrid Pin
Xmen Real 16-Dec-08 20:18
professional Xmen Real 16-Dec-08 20:18 
GeneralRe: Enum problem in PropertyGrid Pin
Xmen Real 16-Dec-08 20:37
professional Xmen Real 16-Dec-08 20:37 
GeneralRe: Enum problem in PropertyGrid Pin
Lev Danielyan16-Dec-08 21:26
Lev Danielyan16-Dec-08 21:26 
GeneralRe: Enum problem in PropertyGrid Pin
Xmen Real 17-Dec-08 1:49
professional Xmen Real 17-Dec-08 1:49 

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.