The source code to count a specified character inside the string is given below. The given program is compiled and executed successfully.
# Ruby program to count a specified character
# inside the string
str = "aaabbcccddddd";
result = str.count('c');
print "Count: ", result;
Output:
Count: 3
Explanation:
In the above program, we created a string str initialized with "aaabbcccddddd". Then we count the specified character 'c' using the count() function and print the result.
Program/Source Code:
The source code to count a specified character inside the string is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created a string str initialized with "aaabbcccddddd". Then we count the specified character 'c' using the count() function and print the result.
need an explanation for this answer? contact us directly to get an explanation for this answer