Slice And Parse Function
Slice And Parse Function
Last Updated: June 1, 2026Apply Parse + Slice Functions How It Works This method ensures consistent and correctly formatted phone numbers for CRM messages, WhatsApp communication, and automation workflows, regardless of how users enter their numbers.
Parse Number Function
Last Updated: May 22, 2026The Parse Number function is used to extract only numeric values from a string. It automatically removes alphabets, symbols, spaces, and special characters, leaving only numbers. Use Case If a phone number is received in this format: +91-98989-89898 CRM or WhatsApp messaging may not accept dashes or symbols. Using Parse Number, the output becomes: 919898989898...
Slice Function
Last Updated: May 22, 2026The Slice function is used to extract a specific part of a string or number. Use Case If you receive an Order ID like: 123456789 but only need the last four digits (6789), you can use the Slice function. Example Here, 5 skips the first five digits and extracts everything after that. Click Run and...