Reputation: 1
, need to turn twitter.com/TWITTERUSER/status/377991264722894848 into https://twitter.com/intent/favorite?tweet_id=377991264722894848 I essentially want to know how to set it up to replace everything but the tweet ID number at the end with this beginning https://twitter.com/intent/favorite?tweet_id=
Upvotes: 0
Views: 121
Reputation: 124724
Perhaps you are looking for the Regex operator, with parameters:
item.twitter_url
.*/status/([0-9]+).*
https://twitter.com/intent/favorite?tweet_id=$1
Upvotes: 1