chevron-left
gear
Functions
Clean first names
Normalize names from your list. Remove emojis and capitalize names correctly.
E.g.
π₯ lucas
arrow-right
Lucas
=cleanFirstName("
π₯ lucas
")
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Clean company names
Normalize company name from your list. Remove emojis and legal entities.
E.g.
Apple LLC. π₯
arrow-right
Apple
=cleanCompanyName
("
ACMEΒ Ltd
")
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Find domain names
Find the domain from a company name.
E.g.
apple
arrow-right
apple.com
=findDomain("
apple
")
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Find social media profiles
Find social media URLs (Linkedin, Twitter, Youtube, Facebook, Instagram) from a domain name.
=getSocialLinks()
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Classify Job Titles
Classify job titles into departments
E.g.
head of business
arrow-right
Sales
=classifyJobTitle("
Business developer
")
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Fetch website text content
Fetch the given website url and get the text content.
Tip: then use the AI feature to enrich a company from their website.
=getWebsitePageContent
("
https://www.lemlist.com
")
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Extract emails from text
Extracts emails in the text of your choice.
=extractEmailFromText()
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone
Extract emails from website
Extract emails of a website page.
=extractEmailFromWebsite
("
https://www.lemlist.com
")
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Copy code
clone