String function help

maria_iva81maria_iva81 Member Posts: 39
edited 2006-02-15 in Dynamics AX
Hi there, does anybody know a functions in X++ like the ones in VB and ASP : Left, Right...i looked at the documentation and i found onli Trim and some converting functions. Thanks in advance :)

Comments

  • HarishHarish Member Posts: 172
    Hi,

    Axapta provides rich functionality on areas like this. For more info, please have a look at Functions under AOT -> System documentation.

    Just a suggestion -
    In order to get familiarised with X++, if you haven’t already done so I would strongly suggest you to take a training program.

    Regards,

    Harish Mohanbabu
    Harish Mohanbabu
    Long way to go before I sleep..
  • thegrosserthegrosser Member Posts: 4
    left(mystring,number)=substr(mystring,1,number)
    right(mystring,number)=substr(mystring,strlen(mystring),-number)
Sign In or Register to comment.