regex_toolkit 1.0.0 copy "regex_toolkit: ^1.0.0" to clipboard
regex_toolkit: ^1.0.0 copied to clipboard

A human friendly collection of commonly used regular expressions

example/main.dart

import 'package:regex_toolkit/regex_toolkit.dart';

void main() {
  var email = 'john@doe.com';

  if (RegexToolkit.emailId.hasMatch(email)) {
    print('Valid Email');
  } else {
    print('Invalid Email');
  }
}
4
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A human friendly collection of commonly used regular expressions

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on regex_toolkit