I am trying to use @route to match a string of any letters, symbols, and/or special characters.
Here is what I have:
@route('/create/<mypath:re:[#!@$%^&*()\_\-.,A-Za-z0-9//:]+>')
The problem is that once the hash symbol is reached, the rest of the string is ignored.
For example: test123!!!.....he#llo!
will only match: test123!!!.....he
Any ideas? Thanks!