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,940 questions

51,877 answers

573 users

How to check if string contains special characters in TypeScript

1 Answer

0 votes
function containsSpecialCharacters(s : any) {
    const specialCharacters = /[`!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?~]/;
   
    return specialCharacters.test(s);
}
 
 
console.log(containsSpecialCharacters('typescript!')); 
console.log(containsSpecialCharacters('java c++')); 
console.log(containsSpecialCharacters('948')); 
console.log(containsSpecialCharacters('17F')); 
console.log(containsSpecialCharacters('@A')); 
console.log(containsSpecialCharacters('(30)')); 
console.log(containsSpecialCharacters(' '));
console.log(containsSpecialCharacters('python c'));
  
  
  
  
/*
run:
  
true
true
false
false
true
true
false
false
  
*/

 



answered Feb 13, 2022 by avibootz

Related questions

1 answer 127 views
1 answer 115 views
1 answer 132 views
1 answer 214 views
1 answer 146 views
1 answer 125 views
...