A developer is building a robot to validate that the birth date is in the correct format within the submitted forms. Which method or activity is best-suited to validate the format?
A developer is building a robot to validate that the birth date is in the correct format within the submitted forms. Which method or activity is best-suited to validate the format?
The best-suited method to validate that the birth date is in the correct format within submitted forms is the 'Is Match' activity. This activity is specifically designed to check whether a string matches a specified pattern, which is ideal for validating date formats. Other methods like 'Contains' and 'Equals' are not suitable for pattern matching, and the 'Matches' activity is typically used for more complex matching scenarios beyond simple string pattern validation.
the answer could be answer A too right?