LikeComparison.Shouldly
2.3.2
dotnet add package LikeComparison.Shouldly --version 2.3.2
NuGet\Install-Package LikeComparison.Shouldly -Version 2.3.2
<PackageReference Include="LikeComparison.Shouldly" Version="2.3.2" />
<PackageVersion Include="LikeComparison.Shouldly" Version="2.3.2" />
<PackageReference Include="LikeComparison.Shouldly" />
paket add LikeComparison.Shouldly --version 2.3.2
#r "nuget: LikeComparison.Shouldly, 2.3.2"
#:package LikeComparison.Shouldly@2.3.2
#addin nuget:?package=LikeComparison.Shouldly&version=2.3.2
#tool nuget:?package=LikeComparison.Shouldly&version=2.3.2
LikeComparison
LikeComparison is a library that allows you to compare a string expression to a pattern in an "SQL LIKE" expression.
It supports many LIKE operator syntax:
- Visual Basic,
- Transact-SQL (with ESCAPE),
- PostgreSQL (both LIKE and ILIKE).
Main use:
Like
method on stringsIsLike
method on MSTest assertionsShouldBeLike
method on Shouldly assertions
Using Like
method on strings from LikeComparison package
You can simply use extension method on String
class:
using LikeComparison.VisualBasic;
string? matchExpression = "abcdef";
bool isLike = matchExpression.Like(pattern: "a*");
or
using LikeComparison.TransactSql;
string? matchExpression = "abcdef";
// common use
bool isLike = matchExpression.Like(pattern: "a%");
// or with escape character
bool isLike = matchExpression.Like(pattern: "/a%", escapeCharacter: "/");
or
using LikeComparison.PostgreSql;
string? matchExpression = "abcdef";
// case-insensitive
bool isLike = matchExpression.ILike(pattern: "A%");
// or case-sensitive
bool isLike = matchExpression.Like(pattern: "a%");
Using IsLike
method on MSTest assertions from LikeComparison.MSTest package
You can simply use extension method on Assert
class:
using LikeComparison.VisualBasic;
string? matchExpression = "abcdef";
Assert.That.IsLike(matchExpression, pattern: "a*");
or
using LikeComparison.TransactSql;
string? matchExpression = "abcdef";
// common use
Assert.That.IsLike(matchExpression, pattern: "a%");
// or with escape character
Assert.That.IsLike(matchExpression, pattern: "/a%", escape: "/");
or
using LikeComparison.PostgreSql;
string? matchExpression = "abcdef";
// case-insensitive
Assert.That.IsILike(matchExpression, pattern: "A%");
// or case-sensitive
Assert.That.IsLike(matchExpression, pattern: "a%");
Using ShouldBeLike
method on Shouldly assertions from LikeComparison.Shouldly package
You can simply use extension method on String
class:
using LikeComparison.VisualBasic;
string? matchExpression = "abcdef";
matchExpression.ShouldBeLike(pattern: "a*");
or
using LikeComparison.TransactSql;
string? matchExpression = "abcdef";
// common use
matchExpression.ShouldBeLike(pattern: "a%");
// or with escape character
matchExpression.ShouldBeLike(pattern: "/a%", escape: "/");
or
using LikeComparison.PostgreSql;
string? matchExpression = "abcdef";
// case-insensitive
matchExpression.ShouldBeILike(pattern: "A%");
// or case-sensitive
matchExpression.ShouldBeLike(pattern: "a%");
Supported syntax
Visual Basic
https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/like-operator
* ? [ ] ^ #
Transact-SQL
https://docs.microsoft.com/en-us/sql/t-sql/language-elements/like-transact-sql
% _ [ ] !
PostgreSQL
https://www.postgresql.org/docs/current/functions-matching.html
% _
Supported targets
.NET 8.0
- Supported.
- Default target for code coverage.
.NET Standard 2.0
- Experimentally supported with C# 8.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- LikeComparison (>= 2.3.2)
- Shouldly (>= 4.3.0)
-
net8.0
- LikeComparison (>= 2.3.2)
- Shouldly (>= 4.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.