web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Answered

How to check if list is empty string or null

(0) ShareShare
ReportReport
Posted on by 1,825

Hi,

How to check if list is empty

So if pass null or empty string to the list.. this if condition doesn't work, it still enters the if statement

If (list && list.elements() && list.empty())

How to check for null and empty string?

I have the same question (0)
  • Martin Dráb Profile Picture
    235,934 Most Valuable Professional on at
    RE: How to check if list is empty string or null

    If it enters the block, it works correctly. The condition says "if the current value is empty". Maybe you overlooked the negation (! operator).

    Your question was "How to check for null and empty string?".

  • .. Profile Picture
    1,825 on at
    RE: How to check if list is empty string or null

    Hi Martin,

    It doesn't work. If I pass "" or null

    If(!enumerator.current()) doesn't work..it enters the if statement in both cases

  • Verified answer
    Martin Dráb Profile Picture
    235,934 Most Valuable Professional on at
    RE: How to check if list is empty string or null

    That's correct. If you create a list and one element (e.g. containing an empty string, for example), the list is not null, elements() returns 1 and empty returns false, because the list isn't empty - it contains one element.

    If you want to check values of elements inside the list, you'll need to iterate the list and look at those elements.

    For example:

    ListEnumerator enumerator = list.getEnumerator();
    
    while (enumerator.moveNext())
    {
        if (!enumerator.current())
        {
            ...
        }
    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Andrés Arias – Community Spotlight

We are honored to recognize Andrés Arias as our Community Spotlight honoree for…

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Sohaib Cheema Profile Picture

Sohaib Cheema 777 User Group Leader

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 630 Super User 2025 Season 2

#3
Martin Dráb Profile Picture

Martin Dráb 602 Most Valuable Professional

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans