http://www.perlmonks.org?node_id=190813


in reply to Re: Re: Is there a way I can substitute for ":" except when it is preceded by a letter C
in thread Is there a way I can substitute for ":" except when it is preceded by a letter C

That's not quite right, the * makes it match even if there's 0 C's, turning all colons into apostrophes, not just the intended ones
s/(^|[^C]):/$1'/g
fixes that, but won't work if there is multiple colons in a row. A negative lookbehind is probably the only way to do this properly.

--MrNobo1024
s]]HrLfbfe|EbBibmv]e|s}w}ciZx^RYhL}e^print

  • Comment on Re: Re: Re: Is there a way I can substitute for ":" except when it is preceded by a letter C
  • Download Code