Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
We’re experiencing technical issues with our vendor that are affecting license activations for Designer Desktop. We don’t yet have an estimated resolution time. We apologize for the inconvenience and will share updates as we have them.
Start Free Trial

Alteryx Designer Desktop Discussions

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

How to remove specific Characters from a URL

Venamma
7 - Meteor

Hi team,

 

I have a URL mentioned below, I would like to remove the characters til ".com/"and also remove the ".html?" and my result should look like

"t5/forums/postpage/board-id/designer-discussions"

 

 Example:

https://community.alteryx.com/t5/forums/postpage/board-id/designer-discussions.html?

Result:

t5/forums/postpage/board-id/designer-discussions

 

Can someone pls help me with this?

 

Regards,

Venamma

2 REPLIES 2
binuacs
21 - Polaris

@Venamma @Try the below formula

 

Regex_Replace([URL],".*com\/(.*) \/.html\/?","$1")

binuacs
21 - Polaris

Edit:

 

Regex_Replace([URL],".*com\/(.*)\.html\/?","$1")

 

image.png

Labels
Top Solution Authors