eo-oe-aaaa #4427(2007/11/27 08:40 GMT) [ C# ] Rating0/0=0.00
縮めた感じで。
1 2 3 4 5 6 7 8 9
static void ls(string[] pathList, string path) { int i; Console.WriteLine( pathList.Where( x => x.IndexOf(path) != -1 ) .Select( x => x.Substring( path.Length, (i = x.IndexOf( "/", path.Length )) == -1 ? x.Length-path.Length : i-path.Length+1 ) ) .Aggregate(new StringBuilder(), (sb, s) => sb.Append(s).Append(" ")) ); }
Rating0/0=0.00-0+
[ reply ]
eo-oe-aaaa
#4427()
[
C#
]
Rating0/0=0.00
縮めた感じで。
Rating0/0=0.00-0+
[ reply ]