Scout.Text.Regex 0.4.7

dotnet add package Scout.Text.Regex --version 0.4.7
                    
NuGet\Install-Package Scout.Text.Regex -Version 0.4.7
                    
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="Scout.Text.Regex" Version="0.4.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Scout.Text.Regex" Version="0.4.7" />
                    
Directory.Packages.props
<PackageReference Include="Scout.Text.Regex" />
                    
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 Scout.Text.Regex --version 0.4.7
                    
#r "nuget: Scout.Text.Regex, 0.4.7"
                    
#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 Scout.Text.Regex@0.4.7
                    
#: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=Scout.Text.Regex&version=0.4.7
                    
Install as a Cake Addin
#tool nuget:?package=Scout.Text.Regex&version=0.4.7
                    
Install as a Cake Tool

Scout.Text.Regex

Scout.Text.Regex provides byte-oriented regular expressions for .NET applications that need predictable search behavior over UTF-8, mixed, or arbitrary byte data.

using Scout.Text.Regex;

ByteRegex regex = ByteRegex.Compile(@"(?m)^Status: ([0-9]+)$");
ByteRegexCaptures? captures = regex.FindCaptures(data);

The engine is backed by Scout's automata implementation and is designed for Native AOT, trimming, and linear-time search.

Compiled ByteRegex and ByteRegexSet instances are safe to share across threads for matching. Callback state passed to iteration APIs remains caller-owned.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Scout.Text.Regex:

Package Downloads
Picket.Engine

AOT-safe secret scanning engine for Picket using Scout.Text.Regex for byte-oriented matching.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.4.7 1,379 7/19/2026
0.4.6 93 7/19/2026
0.4.5 117 7/14/2026
0.4.4 290 7/12/2026
0.4.3 93 7/11/2026
0.4.2 1,497 7/6/2026
0.4.1 524 7/4/2026
0.4.0 114 7/3/2026