Ruby String Exercises: Get the number of lines in a given string
16. Write a Ruby program to get the number of lines in a given string.
Ruby Code:
str = "Python is a widely used high-level, general-purpose,
interpreted, dynamic programming language.
Its design philosophy emphasizes code readability,
and its syntax allows programmers to express concepts in
fewer lines of code than possible in languages such
as C++ or Java."
print "Number of lines of the above string: ",str.lines.count
Output:
Number of lines of the above string: 6
Flowchart:
Ruby Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Ruby program to get a substring from a specified position to the last char of a given string.
Next: Write a Ruby program to truncate a given string to the first n words.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics