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

Notifications

Announcements

No record found.

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

Responsible AI policies

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

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans