Problem 1641. ABBREVIATION
Abbreviate the given string. Consider Only Capital Letters.
EXAMPLE
If input is 'Abbreviation of The Given String' then output should be 'A T G S '. Note: There should be a space at the end of the abbreviated word.
Solution Stats
Problem Comments
-
3 Comments
In the swecond test case, you have:
x ='The Propose is to Make ABBREBIATION';
y_correct = 'T P M A ';
Are "is" and "to" to be ignored, or should the rule be "Only abbreviate words that begin with capital letters?"
In this problem it is assumed that every word in the input string with more than two letters starts with an uppercase letter. All the test cases in the examples have this convention.
I hate regexes because I cannot handle them :-)
Solution Comments
Show commentsProblem Recent Solvers124
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6362 Solvers
-
Back to basics 6 - Column Vector
1075 Solvers
-
Make an awesome ramp for a tiny motorcycle stuntman
677 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
613 Solvers
-
383 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!