I have the below coming out of our database and I need to separate each phrase into a new column. 'Wants' is a common word to the start of each phrase so I have been trying RegEx to try and get the desired outcome.
Input:
Wants more details on this property Wants to view this property Wants an online viewing Wants more details on this property Wants to view this property
Output:
Wants more details on this property
Wants to view this property
Wants an online viewing
Wants more details on this property
Any advise on the expression to use would be appreciated. Thank you