RegularPatterns 1.3.0

dotnet add package RegularPatterns --version 1.3.0
NuGet\Install-Package RegularPatterns -Version 1.3.0
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="RegularPatterns" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RegularPatterns --version 1.3.0
#r "nuget: RegularPatterns, 1.3.0"
#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 RegularPatterns as a Cake Addin
#addin nuget:?package=RegularPatterns&version=1.3.0

// Install RegularPatterns as a Cake Tool
#tool nuget:?package=RegularPatterns&version=1.3.0

RegularPatterns

A small alternative to regex.

Aimed at being a little more friendly for those of us who cant deal with regex syntax.

Features

  1. The StringRange type which is a combination of string and Range as a means to pass around ranges while still keeping a reference of the string its associated with.

    It is implicitly converted to type string and to type Range.

  2. Has the following built in patterns:

    • None: A pattern with no definition.
    • End: Specifies the end of pattern sequence.
    • Any: A pattern where the run is anything until the next pattern matches.
    • Except: A pattern where the run is not any of the provided parameters.
    • Text: A pattern where the run has to be any of the provided parameters.
    • Repeat: A pattern where the run repeats a specified at-least and/or at-most times.
    • Custom: A user-defined pattern.
  3. Has the following methods:

    • Match: Determines if a string matches a specified pattern.
    • RangeOf: Returns a StringRange of where a specified pattern matches.
    • RangesOf: Returns an array of StringRange where ever a pattern matches.
    • Between: Returns a StringRange where the contents are between a StringRange and a pattern.

Usage

String one or more Patterns together in the methods provided to get a StringRange for that pattern.

Example RSS parsing

using System.Text.RegularPatterns;
using static System.Text.RegularPatterns.Pattern;

string rss = @$"<?xml version=""1.0"" encoding=""UTF-8"" ?>
<rss version=""2.0"">

<channel>
  <title>W3Schools Home Page</title>
  <link>https://www.w3schools.com</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>https://www.w3schools.com/xml/xml_rss.asp</link>
    <description>New RSS tutorial on W3Schools</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>https://www.w3schools.com/xml</link>
    <description>New XML tutorial on W3Schools</description>
  </item>
</channel>

</rss>";


foreach(StringRange item in rss.RangesOf(Text("<item>"), Any, Text("</item>")))
{
    StringRange title = item.RangeOf(Text("<title>")).Between(Text("</title>"));
    StringRange link = item.RangeOf(title, Text("<link>")).Between(Text("</link>"));
    StringRange description = item.RangeOf(link, Text("<description>")).Between(Text("</description>"));
    Console.WriteLine(title);
    Console.WriteLine(link);
    Console.WriteLine(description);
    Console.WriteLine();
}

Custom Patterns

You can make your own patterns as long as they conform to the following.

/// <param name="str">The source string.</param>
/// <param name="s">The starting index.</param>
/// <param name="e">The ending index.</param>
/// <param name="p">The next Pattern in the sequence.</param>
/// <return>A PatternState</return>
(str, s, e, p) =>
{
    // custom code here
}

To construct your pattern use Custom() method, an optional name can be specified like so:

using static System.Text.RegularPatterns.Pattern;

Pattern customPattern = Custom((str, s, e, p) =>
{
    // custom code here
}, "MyCustomPattern");

All paths must return either an integer or PatternState. Where

0 == PatternState.Backtrack, -1 == PatternState.Abort,

and all possitive integers are regarded as success and represent the ending index of a match. If there is another pattern p then the Logic method of that pattern should be invoked like so.

return p.Logic(str, s, e, p);

Where s is the new starting index for the next pattern.

Product 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 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • 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.

Version Downloads Last updated
1.3.0 424 5/20/2022
1.2.0 249 12/23/2021
1.1.0 239 12/16/2021
1.0.1 244 12/16/2021
1.0.0 287 12/16/2021