Hi. I need help figuring out a regex that would test a string to make sure it's at least 8 characters in length and has at least one period in it.
Sample values:
1000.1528.E1 - this one should pass the regex as it is at least 8 characters in length and has at least one period
1528.E1 - this would fail the regex due to length
1000,1528,E1 - this would fail the regex due to commas instead of periods
Thanks for any assistance!