Symptoms
When reading a date of birth from a field with pre-filled dMy separators, those separators are read using OCR but result in an invalid date value.
Becomes...
Cause
The separation characters are being read by OCR.
Resolution
Autocorrect script for the field:
using System; if (Value.Text.Replace(" ", "").Equals("11", StringComparison.OrdinalIgnoreCase) || Value.Text.Replace(" ", "").Equals("ii", StringComparison.OrdinalIgnoreCase)) { Value.Text = ""; }
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article