text = "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,";
substitute_with = "_";
const regex = '\B[A-Za-z]';
// const regex = '\B\w';
// const regex = '(\w{1})\w*';
var result = text.replaceAll(regex, substitute_with);
I would like to substitute with underscore all letters except the first in each word.
What can I try next?