Can you please help with regex for LinkedIn, Facebook and Twitter URLs?

Hi there,

I’d like to have fake social accounts as part of my Mockaroo random data. I don’t know RegEx well enough to define it. For example, what I’d like is https://www.linkedin.com/in/randomwordhere/ with “randomwordhere” being a random word. If you can help me with the pattern I’d be happy to do the rest and post my results here.

Thanks!

Neil (paying customer)

I didn’t need RegEx…just plain formulas…

'https://www.linkedin.com/in/’+lower(field(“first name”))+lower(field(“last name”))
'https://www.twitter.com/’+lower(field(“first name”))+lower(field(“last name”))
…and similar for Facebook…

…in case anyone is interested. first name and last name are fields in my Mockaroo definition.

Neil