RosettaCodeData/Task/Empty-string/I/empty-string.i

14 lines
253 B
OpenEdge ABL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
software {
2026-02-01 16:33:20 -08:00
s = ""
2023-07-01 11:58:00 -04:00
2026-02-01 16:33:20 -08:00
// Can either compare the string to an empty string or
// test if the length is zero.
if s = "" or #s = 0
print("Empty string!")
end
2023-07-01 11:58:00 -04:00
2026-02-01 16:33:20 -08:00
if s - "" or #s - 0
print("Not an empty string!")
end
2023-07-01 11:58:00 -04:00
}