Click here to Skip to main content
15,900,426 members
Home / Discussions / C#
   

C#

 
GeneralRe: Windows Shell - Prevent Folder & File Operations Pin
Eddy Vluggen13-Sep-16 3:22
professionalEddy Vluggen13-Sep-16 3:22 
AnswerRe: Windows Shell - Prevent Folder & File Operations Pin
Bernhard Hiller12-Sep-16 21:22
Bernhard Hiller12-Sep-16 21:22 
AnswerRe: Windows Shell - Prevent Folder & File Operations Pin
Nathan Minier13-Sep-16 1:41
professionalNathan Minier13-Sep-16 1:41 
QuestionGetting Index Of Delimiters After A String Pin
MadDashCoder11-Sep-16 17:11
MadDashCoder11-Sep-16 17:11 
AnswerRe: Getting Index Of Delimiters After A String Pin
BillWoodruff11-Sep-16 19:31
professionalBillWoodruff11-Sep-16 19:31 
GeneralRe: Getting Index Of Delimiters After A String Pin
MadDashCoder11-Sep-16 19:56
MadDashCoder11-Sep-16 19:56 
GeneralRe: Getting Index Of Delimiters After A String Pin
BillWoodruff12-Sep-16 4:50
professionalBillWoodruff12-Sep-16 4:50 
AnswerRe: Getting Index Of Delimiters After A String Pin
OriginalGriff11-Sep-16 23:26
mveOriginalGriff11-Sep-16 23:26 
Use a Regex:
C#
Regex findEm = new Regex(@"(?<=Sample)(?<SampleNo>\d+)(?<Start>\[)(?<Data>.*?)(?<End>\])");
string input = "Sample1[Model:M1; Year:1990]";
Match m = findEm.Match(input);
if (m.Success)
    {
    Console.WriteLine("Sample {0}: {1}{2}{3}\n       {4}, {5}",
                        m.Groups["SampleNo"].Value,
                        m.Groups["Start"].Value,
                        m.Groups["Data"].Value,
                        m.Groups["End"].Value,
                        m.Groups["Start"].Index,
                        m.Groups["End"].Index);
    }
Result:
Sample 1: [Model:M1; Year:1990]
       7, 27

Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: Getting Index Of Delimiters After A String Pin
BillWoodruff12-Sep-16 5:05
professionalBillWoodruff12-Sep-16 5:05 
GeneralRe: Getting Index Of Delimiters After A String Pin
OriginalGriff12-Sep-16 5:09
mveOriginalGriff12-Sep-16 5:09 
AnswerRe: Getting Index Of Delimiters After A String Pin
#realJSOP12-Sep-16 8:49
professional#realJSOP12-Sep-16 8:49 
GeneralRe: Getting Index Of Delimiters After A String Pin
MadDashCoder13-Sep-16 8:02
MadDashCoder13-Sep-16 8:02 
Questioncompare two textboxes (string) - need help Pin
mar malaza11-Sep-16 1:04
mar malaza11-Sep-16 1:04 
GeneralRe: compare two textboxes (string) - need help Pin
harold aptroot11-Sep-16 1:41
harold aptroot11-Sep-16 1:41 
AnswerRe: compare two textboxes (string) - need help Pin
#realJSOP11-Sep-16 3:30
professional#realJSOP11-Sep-16 3:30 
AnswerRe: compare two textboxes (string) - need help Pin
V.11-Sep-16 21:10
professionalV.11-Sep-16 21:10 
QuestionHow is check the date of a valid dateEdit ? Pin
Member 245846710-Sep-16 23:42
Member 245846710-Sep-16 23:42 
AnswerRe: How is check the date of a valid dateEdit ? Pin
OriginalGriff11-Sep-16 0:03
mveOriginalGriff11-Sep-16 0:03 
AnswerRe: How is check the date of a valid dateEdit ? Pin
#realJSOP11-Sep-16 3:21
professional#realJSOP11-Sep-16 3:21 
QuestionGroup Sequance patterns with Linq Pin
Member 121069269-Sep-16 1:27
Member 121069269-Sep-16 1:27 
AnswerRe: Group Sequance patterns with Linq Pin
Richard Deeming9-Sep-16 2:02
mveRichard Deeming9-Sep-16 2:02 
GeneralRe: Group Sequance patterns with Linq Pin
Member 121069269-Sep-16 2:10
Member 121069269-Sep-16 2:10 
AnswerRe: Group Sequance patterns with Linq Pin
#realJSOP9-Sep-16 2:14
professional#realJSOP9-Sep-16 2:14 
GeneralRe: Group Sequance patterns with Linq Pin
Member 121069269-Sep-16 2:19
Member 121069269-Sep-16 2:19 
GeneralRe: Group Sequance patterns with Linq Pin
#realJSOP9-Sep-16 2:25
professional#realJSOP9-Sep-16 2:25 

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.