How to remove the underscores from a string with regex in JavaScript

1 Answer

0 votes
let str = 'javascript_c_c++_php';

str = str.replace(/_/g, '');

console.log(str);

  
  
  
  
/*
run:
  
"javascriptcc++php"
  
*/

 



answered Apr 27, 2022 by avibootz
...