Remove parenthesis and the contents inside from a string
    10 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Is there a neat way to remove a parenthesis and the contents inside from a string. For example the string 
A = 'abc (ABC)'
% how to extract 'abc' from A, get rid of ' (ABC)' including the leading whitespace?
One cumbersome solution is:
temp = strsplit(A,'(');
B = strtrim(temp(1));
0 commentaires
Réponse acceptée
  Stephen23
      
      
 le 7 Jan 2021
        A = 'abc (ABC)';
B = regexp(A,'^\w+','once','match')
5 commentaires
  Stephen23
      
      
 le 9 Mar 2023
				"I mean to extract the only the characters that exist in brackets without the others."
A = 'abc (ABC)';
B = regexprep(A,{'.*\(','\).*'},'')
Plus de réponses (1)
Voir également
Catégories
				En savoir plus sur Characters and Strings dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




