I done number plate extraction and recognition and want to check the output having Pwdsymbol or not. Obtained output is PwDsymbol012345. How can i do it?

1 commentaire

Walter Roberson
Walter Roberson le 1 Fév 2018
Are you trying to determine whether the 9-character string 'Pwdsymbol' occurs somewhere within a string?

Connectez-vous pour commenter.

 Réponse acceptée

Walter Roberson
Walter Roberson le 1 Fév 2018
s='PwDsymbol012345';
locations = strfind(s, 'PwDsymbol');
if isempty(locations)
disp('string did not have PwDsymbol anywhere')
else
disp('PwDsymbol found starting at locations'), locations
end

4 commentaires

SHOBA MOHAN
SHOBA MOHAN le 1 Fév 2018
Thanks Walter. it works.
SHOBA MOHAN
SHOBA MOHAN le 1 Fév 2018
Now, its displayed in the command prompt.I want to print the 'string did not have PwDsymbol anywhere'statement in notepad. Can you help me?
Walter Roberson
Walter Roberson le 1 Fév 2018
... but I would suggest that perhaps this is not what you want to do. I would suggest that instead at most you want to use fopen() and fprintf() and fclose()
SHOBA MOHAN
SHOBA MOHAN le 4 Fév 2018
Thanks walter. i done it.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by