Q:

Ruby program to convert the string into an array of characters based on the specified character

belongs to collection: Ruby Strings Programs

0

In this program, we will create a string and then we will convert the string into an array of characters using the split() function using based on a specified character.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to convert the string into an array of characters based on the specified character is given below. The given program is compiled and executed successfully.

# Ruby program to covert the string into array 
# of characters based on specified character

str = "A#P#M#T#S#D";
arr = str.split("#");

i=0;

print "Array elements are: \n";

while(i<arr.length())
    print arr.at(i)," ";
    i = i + 1;
end

Output:

Array elements are: 
A P M T S D

Explanation:

In the above program, we created a string str initialized with "A#P#M#T#S#D". Then we used the split() function to convert the string into an array of characters based on specified characters and assigned the result to the arr variable. After that, we printed the array.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Strings Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to convert the array of characters in... >>
<< Ruby program to convert the string into an array o...