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
|
i have a string:
i need to extract it will always be a 5 digit number, always preceeded by '\' and it will always "-" after it |
|||
| show 3 more comments |
Perhaps? |
|||||||||||
|
|
This regex does the trick for the input string you provided:
But I actually like Brad's solution using Path.GetFileName more :-) |
|||
|
|
|
Try (based on your answer in the comments about the
|
|||
|
|
-characters elsewhere in the string? – Joel Etherton Dec 20 '10 at 22:44