This library contains utilities for processing strings, such as higher level functions for getting the highest matched string from given a list of strings and a string to match, as well as lower level functions such as getting the number of words matched in the given string(s). Strings can be matched taking into consideration things like article ("a", "an", and "the") and special characters. There are also utility functions to aid in parsing strings, such as removing special characters around the words in a string.
example/main.dart
import 'package:string_processor/string_processor.dart';
void main() => print(getHighestMatch(
['I am a boy', 'Bob the Builder is fun'], 'Bob is a boy.',
ignoreArticles: true, matchCaseInsensitively: false));
Add this to your package's pubspec.yaml file:
dependencies:
string_processor: ^1.0.3
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 flutter packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:string_processor/string_processor.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
1.0.3 | Oct 19, 2018 |
|
|
1.0.2 | Oct 19, 2018 |
|
|
1.0.1 | Oct 19, 2018 |
|
|
1.0.0 | Oct 19, 2018 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100
|
Overall:
Weighted score of the above.
[more]
|
50
|
We analyzed this package on Feb 20, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Detected platforms: Flutter, web, other
No platform restriction found in primary library
package:string_processor/string_processor.dart
.
Fix lib/string_processor.dart
. (-0.50 points)
Analysis of lib/string_processor.dart
reported 1 hint:
line 187 col 7: Use isNotEmpty instead of length
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.56.0 <3.0.0 | ||
Dev dependencies | |||
link_checker | ^2.0.1 | ||
test | ^1.3.0 |