Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a string:

string somestring = "\\\\Tecan1\\tecan #1 output\\15939-E.ESY"

i need to extract 15939

it will always be a 5 digit number, always preceeded by '\' and it will always "-" after it

share|improve this question
1  
Have you tried a regex? – David Heffernan Dec 20 '10 at 22:44
Are there ever - characters elsewhere in the string? – Joel Etherton Dec 20 '10 at 22:44
Will it always be after the last '\'? – Rfvgyhn Dec 20 '10 at 22:44
@joel yes there might be – JOE SKEET Dec 20 '10 at 22:45
@rfvg yes yes yes – JOE SKEET Dec 20 '10 at 22:45
show 3 more comments

3 Answers

up vote 15 down vote accepted
String result = Path.GetFileName("\\\\Tecan1\\tecan #1 output\\15939-E.ESY").Split('-')[0];

Perhaps?

share|improve this answer
+1 for using Path.GetFileName instead of trying to regex all the way there. – Anon. Dec 20 '10 at 22:48
Hah I had a more convoluted answer with substring and split's. Good job recognizing it was a path. – Aequitarum Custos Dec 20 '10 at 22:49
+1: That is a nice solution. I wouldn't have initially thought to treat it as a file. – SnOrfus Dec 20 '10 at 22:49
UNC paths; I've been dealing with them for the last several weeks, heh. ;-) – Brad Christie Dec 20 '10 at 22:51
This is definitely what I'd try first, nice work :) – Tim Barrass Dec 20 '10 at 22:54
show 1 more comment

This regex does the trick for the input string you provided:

        var input = "\\\\Tecan1\\tecan #1 output\\15939-E.ESY";

        var pattern = @".*\\(\d{5})-";

        var result = Regex.Match(input, pattern).Groups[1].Value;

But I actually like Brad's solution using Path.GetFileName more :-)

share|improve this answer

Try (based on your answer in the comments about the \ character):

string result = myString.SubString(myString.LastIndexOf(@"\") + 1, 5);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.