/* name: Downcase description: Converts your text to lowercase. author: Polypad tags: downcase,lowercase */ function main(input) { input.text = input.text.toLowerCase(); […]
Using Polypad, this script encodes plain text to base64. To allow text data to be transmitted with binary data it […]
Using Polypad this scripts transforms plain text string into a camel case string. What is camel case with example? The […]
Using Polypad this script gets the total number of words from your text. How to use Word Counter? Using the […]