vote up 1 vote down star

I'm assuming:

String abc = "My Documents/FileName.txt".Split('/')[1]; // is not the quickest way

Is it?

flag
It helps if you're explicit about the language you're working with. I'm assuming you're referring to Javascript given your example. – Dav Aug 12 at 6:46

1 Answer

vote up 2 vote down
String abc = "My Documents/FileName.txt";
abc = abc.Substring(abc.LastIndexOf('/') + 1);

This has the following virtues:

  1. there is no slash, in which case it just returns the name, and
  2. there are multiple slashes, in which case it returns just the final component
  3. it creates the fewest number of intermediate objects
link|flag

Your Answer

Get an OpenID
or

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