Anypoint PlatformConnect using APIs and integrationsIntegration Studio Exchange ConnectorsAPI managementFlex Gateway NewAPI Governance NewAPI ManagerSee allComposerConnect with clicks, not codeProduct announcementConnect your apps and data instantly, using clicks not code, with the new MuleSoft Composer. Read blog postTry for free Sign up for Anypoint Platform Download Studio & Mule
By industry Financial services Government Healthcare Higher education Insurance Manufacturing Media and telecom RetailBy technology API management B2B EDI Data integration DevOps ESB IoT iPaaS Microservices SOABy integration AWS Microsoft Salesforce SAP ServiceNow By role Architect CDO CIO Developer Business teamsBy initiative Business automation eCommerce Legacy system modernization Mobile Move to the cloud Omnichannel SaaS integrations Single view of customer
Featured Customer stories CIO webcast Developer podcast API strategyExplore Webinars Demos Videos Analyst reports eBooks Whitepapers Infographics Blog Articles
AboutAbout MuleSoft Why MuleSoft Careers Leadership NewsEvents MuleSoft CONNECT Community Meetups All events
FOR CUSTOMERS Find a partner FOR PARTNERS Partner program Partner calendar Become a partner Partner login
Anypoint PlatformConnect using APIs and integrationsIntegration Studio Exchange ConnectorsAPI managementFlex Gateway NewAPI Governance NewAPI ManagerSee allComposerConnect with clicks, not codeProduct announcementConnect your apps and data instantly, using clicks not code, with the new MuleSoft Composer. Read blog postTry for free Sign up for Anypoint Platform Download Studio & Mule
By industry Financial services Government Healthcare Higher education Insurance Manufacturing Media and telecom RetailBy technology API management B2B EDI Data integration DevOps ESB IoT iPaaS Microservices SOABy integration AWS Microsoft Salesforce SAP ServiceNow By role Architect CDO CIO Developer Business teamsBy initiative Business automation eCommerce Legacy system modernization Mobile Move to the cloud Omnichannel SaaS integrations Single view of customer
Featured Customer stories CIO webcast Developer podcast API strategyExplore Webinars Demos Videos Analyst reports eBooks Whitepapers Infographics Blog Articles
AboutAbout MuleSoft Why MuleSoft Careers Leadership NewsEvents MuleSoft CONNECT Community Meetups All events
FOR CUSTOMERS Find a partner FOR PARTNERS Partner program Partner calendar Become a partner Partner login
isDecimal isDecimal(number: Number): Boolean Returns true if the given number contains a decimal, false if not. Parameters Name Description number The number to evaluate. Example This example indicates whether a number has a decimal. Note that numbers within strings get coerced to numbers. Source %dw 2.0 output application/json --- [ isDecimal(1.1), isDecimal(1), isDecimal("1.1") ] Output [ true, false, true ]