Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

regex expression to extract URL's

kartik_Iyer
6 - Meteoroid

Need help with extracting the website details from the below string. In this example it has 2 URL's so that is to be extracted in separate fields. The output should be "Website http://www.jalili.ir;" and "Website http://sharif.edu/jalili" 

 

 

 

String is as below:

Province, abcd; Website http://www.jalili.ir; alt. Website http://sharif.edu/jalili; Email Address jalili@sharif.edu; alt. Email Address rjalili@yahoo.com; alt. , Department of Computer Engineering, Sharif University of Technology; Alternate Title, Editor-In-Chief of ISeCure; Alternate Title, 
2 REPLIES 2
FrederikE
13 - Pulsar

Hey @kartik_Iyer,

 

Tokenize with Regex:

(https?://\S+|www\.\S+)

 

FrederikE_0-1681585021548.png

 

kartik_Iyer
6 - Meteoroid

Thanks,@FrederikE.. It worked perfectly.

Labels