i'm trying to remove all my console.log, console.dir etc from my js file before minifying it with yui (on osx).
the regex i got for the console statements looks like this:
console.(log|debug|info|warn|error|assert|dir|dirxml|trace|group|groupEnd|time|timeEnd|profile|profileEnd|count)\((.*)\);?
and it works if i test it with the RegExr. but it won't work with sed.
what do i have to change to get this working?
sed 's/___???___//g' <$RESULT >$RESULT_STRIPPED
update
after getting the first answer i tried
sed 's/console.log(.*)\;//g' <test.js >result.js
and this works, but when i add an OR
sed 's/console.\(log\|dir\)(.*)\;//g' <test.js >result.js
it doesn't replace the "logs"
