regexed_validator 1.0.2 copy "regexed_validator: ^1.0.2" to clipboard
regexed_validator: ^1.0.2 copied to clipboard

outdated

Validating: phone, name, postalCode, email, url, currency, ip, date, time, htmlTags, password, creditCard. for A Dart/Flutter developers

Validating:

  • phone
  • name
  • postalCode
  • email
  • url
  • currency
  • ip
  • date
  • time
  • htmlTags
  • password
  • creditCard

For Dart/Flutter developers. Regexed Validator at pub.dartlang.org

Usage #

Usage is pretty simple just pass a phone, date, email... to its validation method, see the example below

import 'package:regexed_validator/regexed_validator.dart';

main() {
  print( validator.email('example@example.co.uk') ); // true

  print(validator.url('http://www.nowhere.com?product=28&color=blue')); // true

  print(validator.currency('£498.10')); // true

  print(validator.ip('67.52.159.38')); // true
  
  print(validator.time('14:34 GMT -5')); // true

  print( validator.htmlTags('<strong>Bold</strong>\n'
          '<em>Emphazied</em>\n'
          '<b>Bold</b>\n'
          '<i>Italics</i>\n'
          '<span id="foo" class="bar">Some text</span>\n'
          '<hr />')
  ); // true
}
51
likes
0
pub points
93%
popularity

Publisher

unverified uploader

Validating: phone, name, postalCode, email, url, currency, ip, date, time, htmlTags, password, creditCard. for A Dart/Flutter developers

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on regexed_validator