in reply to Re: Howto strip 42 from comma separated list using s///
in thread Howto strip 42 from comma separated list using s///

I'm currently doing this in .NET C# (which you couldn't know), where i can't eval like that, so a regex substitution /$1$2/ would eat both commas, like
"41,42,43" -> "4143"
Any plain vanilla regex to do it ?
/allan