hi , i want to extract lower case letters i & j and also want to know the placements of dots?
Mostrar comentarios más antiguos
hi , i want to extract lower case letters i & j and also want to know the placements of dots? i will elaborate my question, i want to firstly extract the letters i & j.Then the position of dots with respect to i and j.That is whether the dots are towards left or right or straight at the top.Their distances from the base.
6 comentarios
Guillaume
el 22 de Oct. de 2014
What do you mean by extract? Find the position in a string? Something else? If the position, do you need to know the position of i, j and dot separately, or do you just want to know where in the string to find a i, j or dot.
The answer is different for each case.
Guillaume
el 22 de Oct. de 2014
Again, what do you mean by extract? It now sounds like you want to find the letter i and j in an image. Is that correct?
Syeda
el 22 de Oct. de 2014
Guillaume
el 22 de Oct. de 2014
Syeda
el 26 de Oct. de 2014
Respuestas (1)
Hi,
see strfind
ex :
str = 'ARTioLMj'
strfind(str,'i')
strfind(str,'j')
same for dots
1 comentario
Syeda
el 26 de Oct. de 2014
Categorías
Más información sobre Language Support en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!