How to remove N characters from the middle of a string in TypeScript

1 Answer

0 votes
let str: string = "ab123cd";
  
const mid: number = Math.floor(str.length / 2);
const N: number = 3;
  
str = str.substring(0, mid - Math.floor(N / 2)) + str.substring(mid + 1 + Math.floor(N / 2));
  
console.log(str);
  
  
   
/*
run:
   
"abcd" 
   
*/

 



answered Sep 11, 2024 by avibootz
...