Empty string: Difference between revisions

APL example
(Added solution for Action!)
(APL example)
Line 227:
String.isBlank(record.txt_Field__c);
--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>
 
67

edits