/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-regexp-6d4c4ca4fdd2-regexp-s0595-c0000.md
Regexp - hono-docs
Regexp Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt regexp Summary Content
Regexp
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#regexp
Summary
## Content
```ts twoslash
import { Hono } from 'hono'
const app = new Hono()
// ---cut---
app.get('/post/:date{[0-9]+}/:title{[a-z]+}', async (c) => {
const { date, title } = c.req.param()
// ^?
// ...
})