character extraction from the output
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
SHOBA MOHAN
el 1 de Feb. de 2018
Comentada: SHOBA MOHAN
el 4 de Feb. de 2018
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 comentario
Walter Roberson
el 1 de Feb. de 2018
Are you trying to determine whether the 9-character string 'Pwdsymbol' occurs somewhere within a string?
Respuesta aceptada
Walter Roberson
el 1 de Feb. de 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 comentarios
Walter Roberson
el 1 de Feb. de 2018
See https://www.mathworks.com/matlabcentral/answers/340993-open-new-notepad-and-insert-some-text-without-saving-it-in-file#answer_267647 for more information on interfacing to Notepad.
... 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()
Más respuestas (0)
Ver también
Categorías
Más información sobre Text Analytics Toolbox 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!