2016年11月09日
文字列処理
プログラムを書く時に文字列は絶対出るもの
最近よく見るから、すごい気になってて、
書く量の少ない方法ごあるのに
わざわざ下記のように書く人がいる
実は
sfdcの標準メソッドがあるんやで
はっきり書いてある。
以上です。
最近よく見るから、すごい気になってて、
書く量の少ない方法ごあるのに
わざわざ下記のように書く人がいる
String testStr = 'this is test';
if(testStr != null && testStr !=''){
/*処理*/
}
if(testStr != null && testStr !=''){
/*処理*/
}
実は
sfdcの標準メソッドがあるんやで
isNotEmpty(inputString)
Returns true if the specified String is not empty ('') and not null; otherwise, returns false.
Returns true if the specified String is not empty ('') and not null; otherwise, returns false.
はっきり書いてある。
!=null && !=''はisNotEmpty()と同じだよー。
以上です。
タグ:String
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
この記事へのコメント
コメントを書く
この記事へのトラックバックURL
https://fanblogs.jp/tb/5605610
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック