I have a macro which contains some text:
\textmacro{This is some text.}
Normally, when compiled, it should just print text, like this:
This is some text.
Sometimes, the text contains “①”and “②”, such as this:
\textmacro{① This is some text. ② This is some other text.}
When that happens, I need it to only print the text appearing between “①”and “②”, like this:
This is some text.
How can I make the macro print the text between “①” and “②” in #1, if those symbols appear, otherwise, to just print all of the text?
