An acrostic cipher is a way of embedding one message within another by taking the first (or last) word of each line. Given a string s, and a positive integer n, return a string containing the message you would get by taking the first word on each line, having written the message in s with n words on each line.
You do not need to worry about punctuation. A "word" is anything separated by a space. The input message will use only single spaces (and no line breaks or other whitespace). Similarly, the output message should use only single spaces between words.
Note that the number of words in s is not necessarily a multiple of n.
Also note that this problem can be solved more directly than using the method described above.
t = "This week's Cody challenge is designed to test an essential skill that's easy to have a problem with.";
acrostic(t,4)
ans =
"This is an easy problem"
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers120
Suggested Problems
-
6977 Solvers
-
Increment a number, given its digits
684 Solvers
-
Convert a numerical matrix into a cell array of strings
2387 Solvers
-
Split a string into chunks of specified length
2058 Solvers
-
Flip the vector from right to left
10788 Solvers
More from this Author12
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!