fork download
  1. print(string.match("/.well-known/est/SW5mb0NlcnQtRWRnZQ/simpleenroll", "^/.well%-known/est/[^/]+/[^/]+$"))
  2. print(string.match("/.well-known/est/SW5mb0NlcnQtRWRnZQ==/simpleenroll", "^/%.well%-known/est/([^/]+)/"))
  3. print(string.match("InfoCert-Edge", "^([^%-]+)%-(.+)$"))
  4. print(string.match("/v1/resource1/{uuid}", "^/v1/resource1/[^/]*$"))
  5. print(string.match("/v1/resource1/{uuid}/resource2", "^/v1/resource1/[^/]*/[^/]*$"))
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
/.well-known/est/SW5mb0NlcnQtRWRnZQ/simpleenroll
SW5mb0NlcnQtRWRnZQ==
InfoCert	Edge
/v1/resource1/{uuid}
/v1/resource1/{uuid}/resource2