Given a string, containing several sentences, such as:
'I played piano. John played football. Anita went home. Are you safe?'
output all the matched sentences that begin and end with vowels:
{'I played piano.','Anita went home.','Are you safe?'} Only accept AEIOU/aeiou as vowels.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers214
Suggested Problems
-
Project Euler: Problem 10, Sum of Primes
2092 Solvers
-
Numbers with prime factors 2, 3 and 5.
682 Solvers
-
Find the index of n in magic(n)
272 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
1966 Solvers
-
12539 Solvers
More from this Author99
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.