Most(?) filter ops test for someting and if the item doesn’t fulfill it, then it is not passed on.
I want to, say, remove a prefix X but if the item doesn’t have that prefix then just accept it as it is and pass it on.
I can achieve this, I just want to know what the simplest way is.
Actually… wouldn’t it make sense with some general operator suffix to make the relevant operators less “all-or-nothing”? I would think the common denominator for the relevant filter operators are that they modify the input, and what I’m after is that they pass on the input unchanged if they fail to modify it, rather than to pass on nothing.
Thanx