As a non-.NET programmer I'm looking for the .NET equivalent of the old Visual Basic function left(string, length)
. It was lazy in that it worked for any length string. As expected, left("foobar", 3) = "foo"
while, most helpfully, left("f", 3) = "f"
.
In .NET string.Substring(index, length)
throws exceptions for everything out of range. In Java I always had the Apache-Commons lang.StringUtils handy. In Google I don't get very far searching for string functions.
@Noldorin - Wow, thank you for your VB.NET extensions! My first encounter, although it took me several seconds to do the same in C#:
public static class Utils
{
public static string Left(this string str, int length)
{
return str.Substring(0, Math.Min(length, str.Length));
}
}
Note the static class and method as well as the this
keyword. Yes, they are as simple to invoke as "foobar".Left(3)
. See also C# extensions on MSDN.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…