(Resolved) Replacing a string in repeater items

Did this ever get definitively resolved. I am trying the same thing but don’t see the replacement happening within the repeater.

$w . onReady ( function () {

$w ( “#dataset11” ). onReady (() => {

$w ( "#repeater1" ). onItemReady ( ( $item ,  itemData ,  index ) => { 

$w ( “#repeater1” ). forEachItem (( $w , itemData , index ) => {

**const**  name  =  $w ( '#dynamicDataset' ). getCurrentItem (). title ; 
console . log ( "name is" , name ); 
$w ( "#text132" ). text . replace ( /(Student's Name)/ **g** ,  name ); 
$w ( "#text132" ). text . replace ( "story" ,  "elephant" ); 
console . log ( "replacement text is" , $w ( "#text132" ). text ); 

});
});
});

});