ViTechTalks | Part-1 | Data Weave Interview Questions | @vitechtalks6017 | Generate Numbers

preview_player
Показать описание
Welcome to ViTech Talks , In this video you can learn below data weave interview questions.
1. How to find the even numbers from array Ex: [1,2,3,4,5,6,7,9]
2. How to Swap first name and last name from string Ex: name= Vitech Talks
3. How to Generate Numbers from 1 to 100
4. Generate Even numbers/Odd numbers 50 to 100

Please find the below links to download the Required Softwares.
AnyPoint Platform

AnyPoint Studio

JAVA 1.8/11

MAVEN

Git

Github Account

Jenkins

Postman/Thunder client


7-zip

@vitechtalks6017

@vitechtalks6017

#vitechtalks
#dataweave
#dataweaveInterviewQuestions
#mulesoftrealtimeproject
#mulesoftrealtime
#mulesoftproject
#muleproject
#snowflake #jms #messagequeues #activemq #kafka #snowflake
#mulesoft #mulesofttraining #mule4 #mule #database #sql #vit #vitech #integration#snowflakeintegration#mulewithsnowflake#mulesoftwithsnowflake#challenges #databaseadministration #aws #azure #integrationworld
#mulesoft #muletraining
#queryparameters
#uriparameters
#thunderclient
#raml
#anypointstudio
#anypointplatform
#git
#gitbash
#cloudhub
#azure
#azurerepo
#schedule
#schedulers
#banking
#deposit
#dataweave
#dataweaveplayground
#dataweavetutorial
#gmail
#gmailintegration
#codeoptimization
#mulesoftzerotohero
#parsetemplate
#cache
#munitions
#munit
#munittest
#codecoverage
#security
#authentication
#authorization
#basicauthentication
#ratelimitingpolicies
#apimanger
#error
#errorhandling
#errormule
#raiseerror
#onerrorcontinue
#onerrorpropagate
#azure
#twilio
#sms
#azurewithmule
#azureintegration
#dataweave2.0

dataweaveInterviewQuestions
Mulesoft real time project
mulesoft developer level 2
mulesoft tutorial for beginners
mulesoft full course
mulesoft spring boot
transform message in mulesoft
mulesoft deployment model
mulesoft maintenance exam
batch processing in mule 4
mulesoft kafka connector example
auto discovery mulesoft
mulesoft mock interview
mulesoft installation on windows
Raml Design
Code optimization
Avoid payload override
Security
Authorization
Authentication
Api Manger
Basic Authentication
Rate Limiting policies
Error Handling
Error handling in mule
azure integration
twilio connect
Рекомендации по теме
Комментарии
Автор

Hi sir, Thank you very much for your explanation.
we can also use splitBy like this:
%dw 2.0
var name = "Vitech Talks"
output application/json
---
(name splitBy ", ")[-1 to 0]

NarendraN-dr
Автор

Swap name :

%dw 2.0
output application/json
var name= "ViTech Talks"
var names= (name splitBy " ")
---
names [-1 to 0] joinBy " "

gokulprasath-urqy