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 text like below,

Lorem ipsum dolor sit amet, consectetur sample1.txt adipiscing elit. Morbi nec urna non ante varius semper eget vitae ipsum. Pellentesque habitant sample2.txt morbi tristique senectus et netus et malesuada fames.

I have sample1.txt and sample2.txt in the above text. Name vary from sample1 and sample2. i just need to fetch the file name using c#.

Can anyone please help me on this ?

share|improve this question
Please improve your acceptance rate. – Josh May 23 '12 at 18:33

3 Answers

up vote 1 down vote accepted

Since you tagged it LINQ:

var filesnames = text.Split(new char[] { }) // split on whitespace into words
                     .Where(word => word.EndsWith(".txt"));
share|improve this answer
I've always interpreted a tag of linq to mean linq is available, not linq is required; that's absurd. As a programmer, the only real important thing is to solve the problem in an efficient and maintainable way. – mellamokb May 23 '12 at 18:40
@mellamokb: Well, it's a perfectly fine solution on both of those accounts. – Jason May 23 '12 at 19:58

Try something like this

var filesnames = text.Split(' ')
                 .Where(o => o.EndsWith(".txt")).Select(o => o.SubString(o.LastIndexOf('.'))).ToList();
share|improve this answer

It may be possible with a regular expression if there's a good way to capture what your file names will look like. I'm assuming here it's always blah.txt with alphanumeric characters:

var matches = Regex.Matches(input, @"\b[a-zA-Z0-9]+\.txt\b");
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.