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 :

SubStr Method in AX

Pooja Karki Profile Picture Pooja Karki 3,045
Today I will demonstrate you that how to use SubStr() method in AX 2012.

Substr() Method
static void Datatypes_string_substr(Args _args)
{
str carBrand;
;
carBrand = "Volkswagen";
print substr(carBrand, 6, 5);
//Substr(string value /string variable name,starting postiont, number of elements); 
pause;
}

This was originally posted here.

Comments

*This post is locked for comments