I've got a string with various hex values in random places.
Is it possible to replace all hex values to a single value #FF0000 ?
var info_str = 'The avocado, also known as butter pear or alligator pear, is a fruit that is widely "acknowledged to #E5E5E5 have properties" that reduce cholesterol levels... also #00FF00 ...';
I need to replace all hex values #xxxxxx with #FF0000. How can I do that?
replace() does not work because the hex values in the string are different.

