use*_*888 5

[A-Z0-9._%+-] match a single character present in the list below
A-Z a single character in the range between A and Z (case sensitive)
0-9 a single character in the range between 0 and 9
._%+- a single character in the list ._%+- literally
Run Code Online (Sandbox Code Playgroud)

您可以使用以下网站来了解和测试正则表达式: https ://regex101.com/