i need to replace the random string after underscore here is my code
var map_list_tmpl_pre = '<div>some odd</div><ul><li class="single_map_list" onClick="showlist(\'parent_id_3aXw\')"></li>
<li class="single_map_list" onClick="showlist(\'parent_id_3aXw\')"></li>
</ul>';
$(map_list_tmpl_pre).filter('.single_map_list').each(function(index, currentLink) {
alert(currentLink.outerHTML.replace(/(parent_id_)[0-9][a-z][A-Z]/, 'parent_id_newID'));
});