path_to_regexp 0.4.0 copy "path_to_regexp: ^0.4.0" to clipboard
path_to_regexp: ^0.4.0 copied to clipboard

Converts a path such as '/user/:id' into a regular expression.

example/main.dart

import 'package:path_to_regexp/path_to_regexp.dart';

void main() {
  // Parse a path into tokens, and extract parameters names.
  final parameters = <String>[];
  final tokens = parse(r'/user/:id(\d+)', parameters: parameters);
  print(parameters); // [id]

  // Create a regular expression from tokens.
  final regExp = tokensToRegExp(tokens);
  print(regExp.hasMatch('/user/12')); // true
  print(regExp.hasMatch('/user/alice')); // false

  // Extract parameter arguments from a match.
  final match = regExp.matchAsPrefix('/user/12');
  print(extract(parameters, match!)); // {id: 12}

  // Create a path function from tokens.
  final toPath = tokensToFunction(tokens);
  print(toPath({'id': '12'})); // /user/12
}
44
likes
130
pub points
94%
popularity

Publisher

verified publisherleonsenft.dev

Converts a path such as '/user/:id' into a regular expression.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on path_to_regexp