Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/^(?:[^;]*;[^;]*){7}$/
#expanded out:
/ #start regex
^ #anchor to beginning of string
(?: #start grouping (memory free, not saved in $1)
[^;]* #zero or more non-semicolon characters
; #a literal semicolon
[^;]* #zero or more non ; char
) #end grouping
{7} #match exactly seven of the previous group
$ #anchor to the end of the string
/x #end regex (x-modifier for multi-line)