regexpValidEmailAddressFormat
regexpValidEmailAddressFormat(): RegExp
メールアドレスの形式であるか判定する正規表現を提供
Example
regexpValidEmailAddressFormat().test('your-email@example.com')
Returns
RegExp
/^[\w.%+-]+@[\w.-]+\.[a-z]{2,}$/i
regexpValidEmailAddressFormat(): RegExp
メールアドレスの形式であるか判定する正規表現を提供
Example
regexpValidEmailAddressFormat().test('your-email@example.com')
RegExp
/^[\w.%+-]+@[\w.-]+\.[a-z]{2,}$/i