Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Scheme
- Ada
- C
- Clojure
- Cobol
- C++
- C#
- C#
- D
- Dart
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Haskell
- Haskell
- JS
- Java
- Java
- Java
- Java
- Kotlin
- Lisp
- Lua
- Obj-C
- PHP
- PHP
- Pascal
- Perl
- Python
- Python
- Python
- Ruby
- Rust
- Rust
- Scala
- Smalltalk
- VB
(define (empty-string? s)
(= (string-length s) 0))
(define blank (empty-string? (string-trim s)))
bool blank = true;
for (const char *p = s; *p; p++) {
if (!isspace(*p)) {
blank = false;
break;
}
}
s has type char*
IDENTIFICATION DIVISION.
PROGRAM-ID. blank string.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 BOOLEAN-BLANK PIC X.
88 BLANK VALUE "T".
88 NOT-BLANK VALUE "F".
PROCEDURE DIVISION.
IF s > SPACES
SET BLANK TO TRUE
ELSE
SET NOT-BLANK TO TRUE
END-IF
STOP RUN.
bool blank = false;
if (s.empty() || std::all_of(s.begin(), s.end(), [](char c){return std::isspace(c);})) {
blank = true;
}
s must be of type std::string
check if s is empty or if all of its characters are spaces, horizontal tabs, newlines, vertical tabs, feeds or carriage return
check if s is empty or if all of its characters are spaces, horizontal tabs, newlines, vertical tabs, feeds or carriage return
bool blank = string.IsNullOrWhiteSpace(s);
final blank = s == null || s.trim() == '';
Blank = string:is_empty(string:trim(S)).
trimming the string to remove leading/trailing whitespaces and then checking if it's empty
blank = s == ''
const blank = s == null || s.trim() === ''
Because _== is being used instead of ===, undefined will also return true—which is good because it represents the absence of a value just like null.
boolean blank = s == null || s.isBlank();
(setf blank (not (find #\space s :test-not #'eql)))
blank = (s == nil or #string.gsub(s, "^%s*(.-)%s*$", "%1") == 0)
$blank = (empty(trim($s));
Php 5.5 and after.
$blank = !trim($s);
Php 5.4 or older.
blank := trim(s) = '';
$blank = !$s || $s=~/^\s*$/;
Left part catch undefined or empty.
Right part catches "whitespaces only".
Right part catches "whitespaces only".
val blank = Option(s).forall(_.trim.isEmpty)
Use strip (Java 11) instead of trim for Unicode-awareness, or more simply use isBlank (Java 11)
Option(s) ensures that null is handled.
Option(s) ensures that null is handled.
blank := s isAllSeparators.