Convert a sentence to its acronym.
Status: Closed · Asked by tycoon1962 on · 0 views
Dear Support,
Can I convert a sentence to its acronym using the 'Text Formatter' or another tool in Pabbly?
Is there any other way of doing it inside my workflow?
Thank you.
Best
Hello @tycoon1962
You can convert a sentence to its acronym using Code(Pabbly). Please refer to the attached image for more info.

Here is the code to bee enteres :
let inputData = "Map the sentence here";
let words = inputData.split(' ');
let acronym = words.map(word => word.charAt(0).toUpperCase()).join('');
return acronym;
Hello Preeti Paryani,
Thank you so much for your help and assistance.
This is precisely what I wanted.
Regards
Hello @tycoon1962
Thanks for the update, we'd love to hear your thoughts! If you have a moment, please rate us on Google. Your feedback helps us improve.