How do i make input correct to be both lower and uppercase?
    8 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Kalpha.mc
 el 17 de Nov. de 2020
  
    
    
    
    
    Respondida: Ameer Hamza
      
      
 el 17 de Nov. de 2020
            I need to find out how to make this if statment to accept the imput as capital or lower case c.
Could someone please help me out with it ?
x = input('Answer is c or C','s');
if x ~= lower('C') ,or upper('c')
    disp('incorrect')
elseif x == lower('C') ,or upper('c')
    disp('correct')
end
0 comentarios
Respuesta aceptada
  Ameer Hamza
      
      
 el 17 de Nov. de 2020
        Apply lower() on the input x
x = input('Answer is c or C','s');
if lower(x) ~= 'c'
    disp('incorrect')
elseif lower(x) == 'c'
    disp('correct')
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Characters and Strings en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

