Hi I use the import from website information, I specifically copy an estimated shipping date. that has the words estimate then {date}
How can I use the Regex to remove the word "estimate" and just leave the date numbers?
Thank you in advance
Hi I use the import from website information, I specifically copy an estimated shipping date. that has the words estimate then {date}
How can I use the Regex to remove the word "estimate" and just leave the date numbers?
Thank you in advance
Hi @angellara,
I don't think you need to use regex in this scenario. Instead, you can use our replace function to replace the string "estimate " with an empty string. The following snippet demonstrates how to do this. If you have a more complex use case, please let me know and I'll be happy to help.
{date="estimate 2023-09-23"}{=date}
Date without "estimate": {=replace(date, "estimate ", "")}