`<http://asdf_1234.xyz|asdf_1234.xyz>` filtered th...
# announcements
g
<http://asdf_1234.xyz|asdf_1234.xyz>
filtered through (
"*.xyz" to "*.abc"
) to produce
asdf_1234.abc
if i used a regex then I'd have to escape the period:
<http://asdf_1234.xyz|asdf_1234.xyz>
filtered through (
"(.+?)\\.xyz" to "\1.abc"
) to produce
asdf_1234.abc