How to match phone number

OS 2.9

trying to parse this field with this type of content

request:/houston-tx/mip/tel:(713)%20766-1212

how can I match tel: or match something that has (713)%20766-1212 fromat

Like with regex?
(\d{3})%20\d{3}-\d{4} Matches a phone number in the format (713)%20766-1212

  • (\d{3}) → Matches an area code in parentheses (e.g., (713))
  • %20 → Matches the encoded space (%20)
  • \d{3}-\d{4} → Matches the rest of the number (e.g., 766-1212)

Thanks for the reply, no DQL from the dashboards please

I haven’t figured out how to do this via the DQL search bar, but I know that when querying via the API you can specify a query of type regex in the actual DSL of the query, as exemplified here: Regexp - OpenSearch Documentation

I’ll report back here if I learn anything else.