Hi. I have a piece of code to search and replace certain words.
I want the search to be both global but also case insensitive.
I can make it insensitive, but the global search won't work. This is the code I have:
Code Perl:if($comments =~ m/bad/i) { $comments =~ s/bad/###/g; }
Any help would be brilliant. Thanks in advance!![]()





Bookmarks