about strings properties issstrprop

1 visualización (últimos 30 días)
Umut Oskay
Umut Oskay el 20 de Mayo de 2020
Comentada: Rik el 22 de Mayo de 2020
s= input('s: ');
isstrprop(s, 'alpha')
i wrote this code and it doesnt work. .How should i write. if i right Hello1234 as a input of s , i want to get 1 1 1 1 1 0 0 0 0 as an answer

Respuesta aceptada

Rik
Rik el 20 de Mayo de 2020
You forgot the 's' switch with your call to input:
s= input('s: ','s');
isstrprop(s, 'alpha')
  2 comentarios
Umut Oskay
Umut Oskay el 22 de Mayo de 2020
Can you explain what is the purpose of that ‘s’
Rik
Rik el 22 de Mayo de 2020
The documentation explains it already:
str = input(prompt,'s') returns the entered text, without evaluating the input as an expression.

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 20 de Mayo de 2020
Remove the semi-colon.
isstrprop('saraaba123', 'alpha')
  1 comentario
Umut Oskay
Umut Oskay el 20 de Mayo de 2020
sorry can you check the question again .

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by