Feedback

C# - Letztes Wort aus einem String ermitteln

Veröffentlicht von am 9/5/2007
(1 Bewertungen)
Gibt das letzte Wort aus einem String zurück.
// using System.Text.RegularExpressions;

/// <summary>
/// Gets the last word of the given string.
/// </summary>
/// <param name="token">The token.</param>
/// <returns>the last word of the given string</returns>
private static string GetLastWordOfString(string token)
{
    string[] words = Regex.Split(token.TrimEnd(), @"[\s]");
    return words[words.Length-1];
}
Abgelegt unter String, letztes.

Kommentare zum Snippet

 

Logge dich ein, um hier zu kommentieren!