Parseasy 1.0.0

dotnet add package Parseasy --version 1.0.0
                    
NuGet\Install-Package Parseasy -Version 1.0.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="Parseasy" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Parseasy" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Parseasy" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Parseasy --version 1.0.0
                    
#r "nuget: Parseasy, 1.0.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.
#:package Parseasy@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Parseasy&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Parseasy&version=1.0.0
                    
Install as a Cake Tool

Parseasy

Parseasy is a modern and efficient alternative to Regex for text pattern matching and extraction in .NET applications. It provides a simple, type-safe API for parsing text based on patterns with typed placeholders.

Features

  • Type-safe parsing: Extract values with automatic type conversion
  • Simple pattern syntax: Use intuitive placeholders like {name:string}, {age:int}
  • Performance optimized: Compiled patterns and efficient memory usage
  • Thread-safe: Safe to use in multi-threaded applications
  • Comprehensive API: TryParse, Parse, IsMatch, and FindAllMatches methods

Installation

dotnet add package Parseasy

Usage

Basic Parsing

using Parseasy;

string input = "Name: John, Age: 30";
string pattern = "Name: {name:string}, Age: {age:int}";

if (Parser.TryParse(input, pattern, out var result))
{
    string name = result.GetValue<string>("name");
    int age = result.GetValue<int>("age");
    Console.WriteLine($"Name: {name}, Age: {age}");
}

Parse Method (with Exception Handling)

try
{
    var result = Parser.Parse(input, pattern);
    string name = result.GetValue<string>("name");
    int age = result.GetValue<int>("age");
    Console.WriteLine($"Name: {name}, Age: {age}");
}
catch (ParseException ex)
{
    Console.WriteLine($"Parsing failed: {ex.Message}");
}

Checking if a String Matches a Pattern

if (Parser.IsMatch(input, pattern))
{
    Console.WriteLine("Input matches the pattern.");
}

Finding All Matches

string input = "Name: John, Age: 30\nName: Jane, Age: 25";
string pattern = "Name: {name:string}, Age: {age:int}";

var matches = Parser.FindAllMatches(input, pattern);
foreach (var match in matches)
{
    string name = match.GetValue<string>("name");
    int age = match.GetValue<int>("age");
    Console.WriteLine($"Name: {name}, Age: {age}");
}
string input = @"
# Server Configuration
host=192.168.1.10
port=8080
max_connections=100

# Database Configuration
db_host=localhost
db_port=5432
db_name=myapp
db_user=admin
";
string pattern = "{key:string}={value:string}";

var matches = Parser.FindAllMatches(input, pattern);
foreach (var entry in configEntries)
{
    string key = entry.GetValue<string>("key");
    string value = entry.GetValue<string>("value");
    config[key] = value;
    Console.WriteLine($"  {key} = {value}");
}

Supported Types

Parseasy supports the following types in placeholders:

  • string: Any text
  • int: Integer numbers
  • decimal, double, float: Floating-point numbers
  • bool: Boolean values (true/false)
  • date, datetime: Date and time values
  • guid: GUID values
  • email: Email addresses
  • url: URLs
  • phone: Phone numbers
  • ip: IP addresses

Performance Considerations

  • Patterns are compiled and cached for optimal performance
  • Memory usage is minimized by reusing pattern objects
  • Thread-safe implementation for concurrent access

License

MIT

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.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
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.

Version Downloads Last Updated
1.0.0 317 3/4/2025