Interesting question about Asterisk dialplan patterns and text extensions! It seems like the underscore is indeed causing issues with your pattern matching. Try escaping the underscore (\_) in your patterns, or using a character class like [a-zA-Z0-9_]+. This might help the pattern recognition work ...