1. Micro Focus UFT One Help Center (v. 15.0.2), "Regular expression character and operator reference". This official documentation defines the operators used:
. (dot): "Matches any single character except a newline."
: "Matches the preceding character or sub-expression zero or more times."
[abc]: "Matches any one of the enclosed characters."
{n}: "Matches exactly n times."
2. Microsoft VBScript Documentation, "Pattern Property (RegExp)". As UFT One utilizes the VBScript engine, this source is authoritative. It confirms the syntax for character matching ([89]), quantifiers ({3}), and wildcards (., ).
3. MIT OpenCourseWare, "6.0002 Introduction to Computational Thinking and Data Science, Fall 2016", Lecture 5: "Stochastic Thinking". Section on "Regular Expressions" explains the fundamental syntax, confirming that [89] matches '8' or '9' and [0-9]{3} matches any three-digit sequence. This validates the universal interpretation of the regex components.