regexp-manager icon indicating copy to clipboard operation
regexp-manager copied to clipboard

type-safe regexp pattern builder

Results 5 regexp-manager issues
Sort by recently updated
recently updated
newest added

```typescript new RegExpBuilder().range('numbers'); // [0-9] new RegExpBuilder().range(1, 8); // [1-8] new RegExpBuilder().range('lowercase'); // [a-z] new RegExpBuilder().range('uppercase'); // [A-Z] new RegExpBuilder().range('alphabet'); // [a-zA-Z] ``` Wouldn't creating this method be better than...

enhancement

('01a-bbbb-bbbb', {a: [0-1], b: [0-9]}) Don't you want to make it like this?

enhancement
good first issue

Flags in the regular expression must be supported.

enhancement

```typescript // The name is not fixed. type a = ConvertPattern; // Capturing ```

The creation of a regular expression can also be determined after accessing the DB. Therefore, it is necessary to operate the builder pattern after all asynchronous functions are completed externally,...

enhancement