# IsNullorEmpty (StringValue)

| **Name**    | ***IsNullOrEmpty (String)***                                                               |
| ----------- | ------------------------------------------------------------------------------------------ |
| Syntax      | IsNullOrEmpty (String val)                                                                 |
| Purpose     | To determine whether a string is null or if its length is zero.                            |
| Description | Returns true if the specified parameter contains a null value or if string length is zero. |
| Return Type | Boolean                                                                                    |
| Parameters  | val \[System.String] – Expression that will be evaluated                                   |

![](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FmEXPm9bQN6LlraPag5m4%2F0.png?alt=media)

**Example**

In this example, we will pass a null value to the function transformation object using a *Variables* object.

![](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FMSEtygHwe2kdIIUeH3OW%2F1.png?alt=media)

In the output, you can see that the Boolean value, True, has been returned as the passed value was empty or null.

![](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FcNoqHaATNM5dDPZ7F4Ru%2F2.png?alt=media)
