1c67d6573Sopenharmony_cimat!(t01, r".*abcd", r"abcd", Some((0, 4))); 2c67d6573Sopenharmony_cimat!(t02, r".*(?:abcd)+", r"abcd", Some((0, 4))); 3c67d6573Sopenharmony_cimat!(t03, r".*(?:abcd)+", r"abcdabcd", Some((0, 8))); 4c67d6573Sopenharmony_cimat!(t04, r".*(?:abcd)+", r"abcdxabcd", Some((0, 9))); 5c67d6573Sopenharmony_cimat!(t05, r".*x(?:abcd)+", r"abcdxabcd", Some((0, 9))); 6c67d6573Sopenharmony_cimat!(t06, r"[^abcd]*x(?:abcd)+", r"abcdxabcd", Some((4, 9))); 7