I want to parse this string and get special values string to parse have one of these patterns
app/(integer)/(integer)/(text or null)
app/(integer)/(text or null)
app/(text or null)
I can use preg_match
for simple use but I can't write optional params
preg_match('%app/(\d+)/(\d+)/(\.*)$%', $text, $matches)
I'd do:
Output: