×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to count a specified character inside the string

Last Updated : December 15, 2025

Problem Solution

In this program, we will create a string and then count the specified character inside the string using the count() method.

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.

# 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.

Ruby Strings Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.