vote up 0 vote down star
1

This code:

string[] files = {"test.txt", 
    "test2.txt", 
    "notes.txt", 
    "notes.doc", 
    "data.xml", 
    "test.xml", 
    "test.html", 
    "notes.txt", 
    "test.as"};

files.ToList().ForEach(f => Console.WriteLine(
    	f.Substring(
    		f.IndexOf('.') + 1, 
    		f.Length - f.IndexOf('.') - 1
    		)
    ));

produces this list:

txt
txt
txt
doc
xml
xml
html
txt
as

Is there some way to make f.IndexOf('.') a variable so that in more complex LINQ queries I have this defined in one place?

flag

As Greg Beech says, this is not LINQ. The example code is using a Lambda function. They have some overlap in functionality, but they're not the same things. – Will Hughes Nov 5 at 11:58
And, in this concrete example, you could use the Substring overload which accepts only the substring start index (msdn.microsoft.com/en-us/library/…) and returns the rest of the string. – Groo Nov 5 at 12:24

4 Answers

vote up 10 vote down check

If you were using Linq then you could use the let keyword to define an inline variable (the code posted in the question isn't actually using Linq).

var ext = from file in files
          let idx = f.LastIndexOf('.') + 1
          select file.Substring(idx);

However for the specific scenario you've posted I'd recommend using Path.GetExtension instead of parsing the string yourself (for example, your code will break if any of the files have a . in the file name).

var ext = from file in files select Path.GetExtension(file).TrimStart('.');
foreach (var e in ext)
{
    Console.WriteLine(e);
}
link|flag
+1 for the "let" keyword. – Dave Markle Nov 5 at 11:24
+1 for teaching him fishing extensions – ssg Nov 5 at 11:31
1  
fishing extensions? – Svish Nov 5 at 11:43
vote up 0 vote down

If you don't want to use the from kind of syntax, you can do something similar with the Select method:

var extensions = files
        .Select(x => new { Name = x, Dot = x.IndexOf('.') + 1 })
        .Select(x => x.Name.Substring(x.Dot));

Although, like Greg, I would recommend using the Path.GetExtension method. And with methods, that could like like this:

var extensions = files
        .Select(x => Path.GetExtension(x));

And in this case I really think that is a lot easier to read than the suggested linq statements.


To write it to the console, you can do this:

extensions
    .ToList()
    .ForEach(Console.WriteLine);
link|flag
vote up 0 vote down

In LINQ it would look like this, (ignoring proper way of extracting filename extensions to mention "let"):

var q = from f in files
        let i = f.IndexOf('.')
        select f.Substring(i + 1, f.Length - i - 1);
foreach(f in q)
{
    Console.WriteLine(f);
}

Note that extensionless file names might create problems :)

link|flag
vote up 2 vote down

You could do this

files.ToList().ForEach(f => { var i = f.IndexOf('.'); 
   Console.WriteLine(f.Substring(i + 1, f.Length - i - 1));}
);

but IMO it is approaching the limits of what you should do in a lambda.

link|flag

Your Answer

Get an OpenID
or

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