メソッド String組み込みファンクション - IsValidEmail
文字列に有効な電子メールが含まれているかテストします
String組み込みファンクション (PRIM_LIBI.ICommonStringIntrinsics) のメンバ
| 名前 | タイプ | データタイプ | 記述 |
|---|---|---|---|
| Result | *Result (任意) | ブール値 | 文字列が有効な電子メールの場合TRUE |
The isValidEmail method allows you test whether a string is a valid email address. This is based on the RFC5322 email standard. - It cannot be more than 254 characters long - It must not contain more than one @ - It must not begin with an @ - It must not begin with a period (.) and there must be at least one period in address - It cannot have two periods next to each other - It cannot contain a space - It must have at least one character between the @ and period in the domain portion - It must not end with a period
EPC150060 - December 2023