1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

salesforce 入力規則実装例

Last updated at Posted at 2023-07-14

半角8桁入力規則の実装例:
AND (
NOT ( ISBLANK ( 項目名 ) ) ,
NOT ( REGEX ( 項目名 , "^[ -~ヲ-゚\r\n]*$" ) ),
LEN(項目名) > 8
)

半角英数字入力規則の実装例:
AND (
NOT ( ISBLANK ( 項目名 ) ) ,
NOT ( REGEX ( 項目名 , "^[a-zA-Z0-9]*$" ) )
)

全角入力規則の実装例:
IF ( ISBLANK ( 項目名 ), FALSE, NOT (REGEX( 項目名 , "^[^a-zA-Z0-9ヲ-゚!-~ ]+$") ) )

株式会社PanGuはsalesforce、Java、mulesoft、serviceNowなどの技術者を募集中です!
メール:wangyu@panguinfo.com

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?