Bullseye is a new flavour of regex for Dart, because JavaScript's regex flavour sucks quite a lot.
Some things Bullseye has that JS regex doesn't:
Possible features:
A simple usage example:
import 'package:bullseye/bullseye.dart';
void main() {
NewRegex dart = new NewRegex("ab*");
print(dart.allMatches("ababbaa")); // => ["ab", "abb", "a", "a"]
}
Please file feature requests and bugs at the issue tracker.
example/bullseye_example.dart
// Copyright (c) 2017, Hanyuan Li. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import 'package:bullseye/bullseye.dart';
import "dart:convert";
void main() {
NewRegex test = new NewRegex("(?<=a)b*");
print(JSON.encode(test.allMatches("aabbaab")));
}
Add this to your package's pubspec.yaml file:
dependencies:
bullseye: "^0.1.1"
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter packages get
Alternatively, your editor might support pub get
or packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:bullseye/bullseye.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.1.1 | Jul 19, 2017 |
|
|
0.1.0 | Jul 19, 2017 |
|
|
We analyzed this package on Apr 9, 2018, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0 | / 100 |
Health:
Code health derived from static analysis.
[more]
|
100 | / 100 |
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100 | / 100 |
Overall score:
Weighted score of the above.
[more]
|
50 |
Detected platforms: Flutter, web, other
No platform restriction found in primary library
package:bullseye/bullseye.dart
.
The description is too short.
Add more detail about the package, what it does and what is its target use case. Try to write at least 60 characters.
Package is pre-v1 release.
While there is nothing inherently wrong with versions of
0.*.*
, it usually means that the author is still experimenting with the general direction API.
Fix analysis and formatting issues.
Analysis or formatting checks reported 1 hint.
Strong-mode analysis of
lib/src/Methods.dart
gave the following hint:line: 96 col: 20
'UTF8' is deprecated and shouldn't be used.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.20.1 <2.0.0 | ||
Dev dependencies | |||
test | ^0.12.0 |