Looking for an Angular pattern that specifically checks if the first letter of each word is capitalized. To achieve this, I have implemented the following pattern:
pattern ="^([A-Z][a-z]*((\\s[A-Za-z])?[a-z]*)*)$"
1- This pattern only works for the first letter of each word.
2- In cases where there are multiple failures, the focus is on checking the first letter of the strings.