Empty string: Difference between revisions

Content deleted Content added
Added solution for Action!
Russtopia (talk | contribs)
APL example
Line 227: Line 227:
String.isBlank(record.txt_Field__c);
String.isBlank(record.txt_Field__c);
--Returns true if the specified String is white space, empty (''), or null; otherwise, returns false.
--Returns true if the specified String is white space, empty (''), or null; otherwise, returns false.
</lang>

=={{header|APL}}==
<lang APL>
⍝⍝ Assign empty string to A
A ← ''
0 = ⍴∊ A
1
~0 = ⍴∊ A
0
</lang>
</lang>