I can not fully understand the regular expressions for Google forms.
You need to make a check on the input in the text field in the form of PC XX + XX, XX where all X are integers.
Is it possible?
I can not fully understand the regular expressions for Google forms.
You need to make a check on the input in the text field in the form of PC XX + XX, XX where all X are integers.
Is it possible?
In Advanced Settings -> Data validation -> Regular Expression you need to select matches and enter
ПК [0-9]{2}\+[0-9]{2},[0-9]{2} 
Check in work:

Think so:
^ПК \d\d\+\d\d,\d\d$ In the form I put "matches" and like this: PC \ d ++ \ d +, \ d {2}. I still understand the number of digits after each component.
Source: https://ru.stackoverflow.com/questions/436215/
All Articles
matchesand writeПК [0-9]{2}\+[0-9]{2},[0-9]{2}. - Wiktor Stribiżew