Find the index of a particular character in a string ignoring case.
Example
Input: x = 'aAbhhfdf'
n = 'a'Output: 1 2
Because in x, at position 1 and 2 , we have a (ignoring case)
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers61
Suggested Problems
-
661 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2823 Solvers
-
822 Solvers
-
Return the first and last characters of a character array
11802 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13607 Solvers
More from this Author70
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Needs more test cases.