The source code to convert the string into an array of characters using the chars() function is given below. The given program is compiled and executed successfully.
# Ruby program to covert the string into array of
# characters using chars() function
str = "HELLO";
arr = str.chars();
i=0;
print "Array elements are: \n";
while(i<arr.length())
print arr.at(i)," ";
i = i + 1;
end
Output:
Array elements are:
H E L L O
Explanation:
In the above program, we created a string str initialized with "HELLO". Then we used the chars() function to convert the string into an array of characters and assigned the result to the arr variable. After that, we printed the array.
Program/Source Code:
The source code to convert the string into an array of characters using the chars() function is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created a string str initialized with "HELLO". Then we used the chars() function to convert the string into an array of 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