static bool hasBindings(String? s) { if (s == null) return false; bool match = reg.hasMatch(s); return match; }