HI Donna,
To remove words or strings in an Airtable field that start with '<https' or 'https', you can use the SUBSTITUTE function in combination with a regular expression. Here's a formula that should accomplish this:
SUBSTITUTE({YourTextField}, "<https.*?\\b|https.*?\\b", "")
Replace {YourTextField} with the name of your text field. This formula will search for any words or strings that start with '<https' or 'https' and remove them from the text in the field.
The regular expression pattern "<https.*?\\b|https.*?\\b" matches any string that starts with '<https' or 'https' and continues until it finds a word boundary (indicated by \b). The SUBSTITUTE function then replaces these matched strings with an empty string, effectively removing them from the field.
If you have more questions about formulas or anything Airtable, feel free to ask, and we'll be happy to help! www.prosperspark.com
Take care!