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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

get substring before a character from a string?

(0) ShareShare
ReportReport
Posted on by 130

For example, if I have

string test = 'Accounts receivable/Common/Customers/Customers past due';

and I want to extract everything before the firsts '/", and return Accounts receivable. What would be the way to go about doing this?

*This post is locked for comments

I have the same question (0)
  • Verified answer
    Long.Thai Profile Picture
    130 on at

    I have found the way to do it.

    string test = 'Accounts receivable/Common/Customers/Customers past due';

    test = subStr(test, 1, strFind(test, '/', 1, strLen(test)));

    test = strRem(test, '/');

  • Verified answer
    Vilmos Kintera Profile Picture
    46,149 on at

    You should be using strSplit function to separate strings by a specific character.

    Here you go:

        str             testStr     = @'Accounts receivable/Common/Customers/Customers past due';
        List            elements    = strSplit(testStr, @'/');
        ListEnumerator  listEnum    = elements.getEnumerator();
        
        listEnum.moveNext();
        
        info(listEnum.current());

    There is another solution, which requires less coding, with containerization of your string by a separator character, and pulling the first element:

        info(conPeek(str2con(testStr, @'/'), 1));


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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Congratulations to our 2025 Community Spotlights

Thanks to all of our 2025 Community Spotlight stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Joris dG Profile Picture

Joris dG 5

#2
Alexey Lekanov Profile Picture

Alexey Lekanov 2

#2
Henrik Nordlöf Profile Picture

Henrik Nordlöf 2 User Group Leader

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans