# (:alphanum)

Matches any characters between a-z, A-Z & 0-9

****

****

## Example

```php "/site/config/config.php"
return [
  'routes' => [
    [
      'pattern' => '/projects/(:alphanum)',
      'action'  => function (string $path) {
        // react to requests
      }
    ]
  ]
];
```