Our support engineers have assembled the top recommended solutions for you.
Microsoft Dynamics AX 2012CRM Connector in Microsoft Dynamics AX 2012Financials Management in Microsoft Dynamics AX 2012Upgrading to Microsoft Dynamics AX 2012
Microsoft Dynamics AX 2009
Application Object Server (AOS)
Enterprise Portal and Role Centers
Inventory Costing in Microsoft Dynamics AX 2009
Invoice Settlements/Discounts/Reversals
SSRS and SSAS Integration
Workflow
I want to extract the numbers from the stringe.g., 123Arpit ...so what i want the output as 123Can anyone please help me how to do it. Thank you
you have several options, the most obvious is strKeep(inputString, '0123456789')
[ Goshoom.NET Dev Blog ]
But it is not fixed like i have various numbers
e.g., 101arpit
10arpit
1023arpit
strKeep keeps only the characters that you want to keep
strKeep('101arpit','0123456789') returns '101'
strKeep('1023arpit','0123456789') returns '1023'
You can use strKeep function to dissolve alphabets. It always returns string value where in which you can convert to integer.
Eg: strKeep("123Arpit567","0123456789") // returns "123567"
Thank you very much guys.