Hi Guys
I got some regex problems
- First text
[image: Jon Do]
[image: Jon/ Do.]
What would be the 2 regex codes to extract first name and last name on this text ?
Note1 : Firstname can contain numbers and special characters, it always starts after [image: and a space and always finish with ]
Note2 : Lastname can contain numbers and special characters, it always starts after the first name and a space and always finish before ]
- Second text
[image: Jon Do]
<https://www.facebook.com/comm/in/Marc-Dubois-b05b81b?midToken=AQGsz-1NLCLukw&midSig=0x_-LDZ2hIbWo1&trk=eml-email_accept_invite_single_01-hero-2-prof%7Ephoto&trkEmail=eml-email_accept_invite_single_01-hero-2-prof%7Ephoto-null-dv2nuo%7El6n0n24p%7E5r-null-neptune%2Fprofile%7Evanity%2Eview&lipi=urn%3Ali%3Apage%3Aemail_email_accept_invite_single_01%3Bx5lx8zcuSDyiuwsrnOXpog%3D%3D>
On this second case I would like to extract only this part :
https://www.facebook.com/comm/in/Marc-Dubois-b05b81b
Note : It always starts after [image: First Last] a jump line and < and always end before ?
- Third text
Message
<https://www.facebook.com/comm/messaging/compose/?connId=Marc-Dubois-b05b81b&midToken=AQGsz-1NLCLukw&midSig=0x_-LDZ2hIbWo1&trk=eml-email_accept_invite_single_01-hero-0-msg%7Ecta&trkEmail=eml-email_accept_invite_single_01-hero-0-msg%7Ecta-null-dv2nuo%7El6n0n24p%7E5r-null-neptune%2Fmessaging%2Ecompose&lipi=urn%3Ali%3Apage%3Aemail_email_accept_invite_single_01%3Bx5lx8zcuSDyiuwsrnOXpog%3D%3D>
And on this last case I would like to extract this part :
https://www.facebook.com/comm/messaging/compose/?connId=Marc-Dubois-b05b81b&midToken=AQGsz-1NLCLukw&midSig=0x_-LDZ2hIbWo1&trk=eml-email_accept_invite_single_01-hero-0-msg%7Ecta&trkEmail=eml-email_accept_invite_single_01-hero-0-msg%7Ecta-null-dv2nuo%7El6n0n24p%7E5r-null-neptune%2Fmessaging%2Ecompose&lipi=urn%3Ali%3Apage%3Aemail_email_accept_invite_single_01%3Bx5lx8zcuSDyiuwsrnOXpog%3D%3D
Note : it always starts after Message and a jump line and < and it ends before >
Thank you