How to extract substring within the characters < and >

manasaMS
✭✭✭
Eg: How to extract "[email protected]" from "Choco Cookie <[email protected]>".
Best Answer
-
Hi @manasaMS
This formula should do what you're after:
=MID(Value@row, (FIND("<", Value@row) + 1), (FIND(">", Value@row, 1) - (FIND("<", Value@row, 1)) - 1))
Hope this helps!
Answers
-
Hi @manasaMS
This formula should do what you're after:
=MID(Value@row, (FIND("<", Value@row) + 1), (FIND(">", Value@row, 1) - (FIND("<", Value@row, 1)) - 1))
Hope this helps!
-
@Nick Korna THANK YOU! This is exactly what I was looking for!!!!
-
@Chizu Hieida glad it helped! 😊
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!