Hear from Salesforce leaders on how to create and deploy Agentforce agents.
Contact Us 1-800-596-4880

isWhitespace

isWhitespace(text: String): Boolean

Checks if the text contains only whitespace.

Introduced in DataWeave version 2.2.0.

Parameters

Name Description

text

The input string.

Example

This example shows how isWhitespace behaves with different inputs and sizes.

Source

%dw 2.0
import isWhitespace from dw::core::Strings
output application/json
---
{
  "a": isWhitespace(null),
  "b": isWhitespace(""),
  "c": isWhitespace("  "),
  "d": isWhitespace("abc"),
  "e": isWhitespace("ab2c"),
  "f": isWhitespace("ab-c")
}
DataWeave

Output

{
  "a": false,
  "b": true,
  "c": true,
  "d": false,
  "e": false,
  "f": false
}
JSON

isWhitespace(text: Null): Boolean

Helper function that enables isWhitespace to work with a null value.

Introduced in DataWeave version 2.2.0.