MSL.Lexi
1.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package MSL.Lexi --version 1.0.3
NuGet\Install-Package MSL.Lexi -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MSL.Lexi" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MSL.Lexi --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MSL.Lexi, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MSL.Lexi as a Cake Addin #addin nuget:?package=MSL.Lexi&version=1.0.3 // Install MSL.Lexi as a Cake Tool #tool nuget:?package=MSL.Lexi&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Build Status
lexi
A regex based lexer for dotnet.
Samples
See Math.Parser and Predicate.Parser for working samples.
VocabularyBuilder Sample
var lexer = VocabularyBuilder
.Create(RegexOptions.CultureInvariant | RegexOptions.IgnoreCase)
.Match($"{nameof(TokenIds.FROM)}", TokenIds.FROM)
.Match($"{nameof(TokenIds.WHERE)}", TokenIds.WHERE)
.Match($"{nameof(TokenIds.SKIP)}", TokenIds.SKIP)
.Match($"{nameof(TokenIds.TAKE)}", TokenIds.TAKE)
.Match($"{nameof(TokenIds.CONTAINS)}", TokenIds.CONTAINS)
.Match("startswith|sw", TokenIds.STARTS_WITH)
.Match("endswith|ew", TokenIds.ENDS_WITH)
.Match(@"and|&&", TokenIds.LOGICAL_AND)
.Match(@"or|\|\|", TokenIds.LOGICAL_OR)
.Match("null|NULL", TokenIds.NULL_LITERAL)
.Match(CommonPatterns.Identifier(), TokenIds.IDENTIFIER)
.Match("true", TokenIds.TRUE)
.Match("false", TokenIds.FALSE)
.Match(CommonPatterns.IntegerLiteral(), TokenIds.INTEGER_LITERAL)
.Match(CommonPatterns.FloatingPointLiteral(), TokenIds.FLOATING_POINT_LITERAL)
.Match(CommonPatterns.ScientificNotationLiteral(), TokenIds.SCIENTIFIC_NOTATION_LITERAL)
.Match(CommonPatterns.QuotedStringLiteral(), TokenIds.STRING_LITERAL)
.Match(CommonPatterns.CharacterLiteral(), TokenIds.CHAR_LITERAL)
.Match(@"\(", TokenIds.OPEN_PARENTHESIS)
.Match(@"\)", TokenIds.CLOSE_PARENTHESIS)
.Match("=|==", TokenIds.EQUAL)
.Match(">", TokenIds.GREATER_THAN)
.Match(">=", TokenIds.GREATER_THAN_OR_EQUAL)
.Match("<", TokenIds.LESS_THAN)
.Match("<=", TokenIds.LESS_THAN_OR_EQUAL)
.Match("!=", TokenIds.NOT_EQUAL)
.Build();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.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.