DotNet.Glob icon indicating copy to clipboard operation
DotNet.Glob copied to clipboard

A fast globbing library for .NET / .NETStandard applications. Outperforms Regex.

Results 9 DotNet.Glob issues
Sort by recently updated
recently updated
newest added

As mentioned on #88 by @aiurovet I need to add test coverage and potentially solve an issue where, on Linux, if a file path contains a backslash, it would be...

This is a new feature to add support for a set of extended globbing patterns - documented here: https://www.linuxjournal.com/content/bash-extended-globbing I see this as an opt-in feature - so I'll add...

enhancement
help wanted
up-for-grabs

I'm considering the following.. Produce a SQL Clr assembly that can be installed into sql server and adds a User defined function for glob matching which will leverage dotnet glob....

enhancement

At the moment dotnet.glob supports either number or letter ranges in patterns, e.g - `[A-Z]` - `[1-9]` However the Unix etc glob library supports a composite form of range expression:...

Thanks @dazinator for the useful library. It was just what I needed for my project. Have you considered joining the .NET Foundation? There's more info here: https://dotnetfoundation.org/projects/submit

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.0.1 to 16.7.1. Release notes Sourced from Microsoft.NET.Test.Sdk's releases. v16.7.1 See the release notes here v16.7.0 See the release notes here. v16.7.0-preview-20200519-01 See the release notes here....

dependencies

Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.4.1 to 2.4.3. Release notes Sourced from xunit.runner.visualstudio's releases. v2.4.3 Changes: #229: Target frameworks not matching #226: Bump MSBuild.Sdk.Extras from 2.0.54 to 2.1.2 #227: Bump Nerdbank.GitVersioning from...

dependencies

Bumps [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) from 0.10.5 to 0.12.1. Commits 384d479 Set library version: 0.12.1 12798ed Update documentation 928fb1e EventPipeProfiler doc improvements (#1419) 76a0704 EventPipeProfiler documentation (#1418) 2de040d Bump perfolizer version from 0.2.0...

dependencies

```cs var glob = new GlobBuilder() .PathSeparator() .Literal("foo") .AnyCharacter() .PathSeparator(PathSeparatorKind.BackwardSlash) .Wildcard() .OneOf('a', 'b', 'c') .NumberNotInRange('1', '3') .Literal(".txt") .ToGlob(); var isMatch = glob.IsMatch(@"/fooa\\barrra4.txt"); // returns true. ``` `isMatch` is false. The...