Problem 92. Find state names that start with the letter N
Given a list of US states, remove all the states that start with the letter N, leaving surrouding spaces intact. For example:
If
s1 = 'Alabama Montana Nebraska Vermont Nevada';
then
s2 = 'Alabama Montana Vermont ';
Notice that the spaces before and after "Nebraska" in s1 still remain between "Montana" and "Vermont" in s2. The same applies for the space before "Nevada".
Be mindful of two-word states that also start with the letter N, like "New York" or "North Carolina". For example:
If
s1 = 'Alabama Montana New York Vermont';
then
s2 = 'Alabama Montana Vermont';
Notice that the spaces before and after "New York" in s1 still remain between "Montana" and "Vermont" in s2.
Solution Stats
Problem Comments
-
12 Comments
Show
9 older comments
Timea Nagy
on 23 Apr 2022
I think I found a very easy solution.
Peter
on 14 Feb 2023
A waste of time, just as useless as Problem 61 :(
Robert Wagner
on 15 Apr 2024
I hate regexp and they hate me!
Solution Comments
Show commentsProblem Recent Solvers1285
Suggested Problems
-
2064 Solvers
-
2096 Solvers
-
17189 Solvers
-
Back to basics 21 - Matrix replicating
1626 Solvers
-
Rotate and display numbered tile
349 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!