CreditCardHelper 1.1.4
.NET Standard 2.0
Install-Package CreditCardHelper -Version 1.1.4
dotnet add package CreditCardHelper --version 1.1.4
<PackageReference Include="CreditCardHelper" Version="1.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CreditCardHelper --version 1.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CreditCardHelper, 1.1.4"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install CreditCardHelper as a Cake Addin
#addin nuget:?package=CreditCardHelper&version=1.1.4
// Install CreditCardHelper as a Cake Tool
#tool nuget:?package=CreditCardHelper&version=1.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CreditCardHelper helps you working with credit cards. Validating the numbers and find the type of card. Verifying card numbers through the Luhn algorithm. It even can check whether there is a number hidden in text.
Nuget Package: https://www.nuget.org/packages/CreditCardHelper
Demo: http://creditcardhelper.somee.com/
Usage
ValidateCreditCard
var cardType = CreditCardHelper.CardType.GetCardTypeByNumber("5105105105105100");
// = CreditCardType.MasterCard
var cardType2 = CreditCardHelper.CardType.GetCardTypeByNumber("123");
// = CreditCardType.Unknown
Validator
var cardIsValid = CreditCardHelper.Validator.ValidateLuhn("5105105105105100");
// = true
var cardIsValid2 = CreditCardHelper.Validator.ValidateLuhn("123");
// = false
var textContainsCC = CreditCardHelper.Validator.TextContainsCreditCard("This is a text with 5105-1051-0510-5100 in it");
// = true
var textContainsCC2 = CreditCardHelper.Validator.TextContainsCreditCard("51st Street number 05 box 1051");
// = false
var textContainsCC3 = CreditCardHelper.Validator.TextContainsCreditCard("Thi5105s is 1051 a te0510xt with5100 in it");
// = true
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Change the project from .NET Framework to .NET Standard 2.0