Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CommunityToolkit.Common/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,17 @@ public static bool IsDecimal([NotNullWhen(true)] this string? str)
return decimal.TryParse(str, NumberStyles.Number, CultureInfo.InvariantCulture, out _);
}

/// <summary>
/// Determines whether a string is valid as a currency.
/// </summary>
/// <param name="str">The string to test.</param>
/// <param name="culture">The culture to check against. If left null, <see cref="CultureInfo.CurrentCulture"/> is used.</param>
/// <returns><c>true</c> for a valid currency; otherwise, <c>false</c>.</returns>
public static bool IsCurrency([NotNullWhen(true)] this string? str, CultureInfo? culture = null)
{
return decimal.TryParse(str, NumberStyles.Currency, culture ?? CultureInfo.CurrentCulture, out _);
}

/// <summary>
/// Determines whether a string is a valid integer.
/// </summary>
Expand Down