verilog-string-replace-matches

verilog-string-replace-matches is a compiled Lisp function in `verilog-mode.el'.

(verilog-string-replace-matches FROM-STRING TO-STRING FIXEDCASE LITERAL STRING)

Replace occurrences of FROM-STRING with TO-STRING.
FIXEDCASE and LITERAL as in `replace-match`. STRING is what to replace.
The case (verilog-string-replace-matches "o" "oo" nil nil "foobar")
will break, as the o's continuously replace. xa -> x works ok though.