Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to insert a character after every N characters in string with JavaScript

1 Answer

0 votes
function insertChAfterEveryNCh(str, ch, n) {
    for (let i = n; i < str.length; i += n + 1) {
    	str = str.slice(0, i) + ch + str.slice(i);
    }
    		
    return str;   
    
}

let str = 'javascript java typescript c php';
let N = 4;

str = insertChAfterEveryNCh(str, '*', N);

console.log(str); 
    
    
    
    
/*
run:
    
"java*scri*pt j*ava *type*scri*pt c* php"
    
*/

 



answered Apr 26, 2022 by avibootz

Related questions

...