程序在C ++中循环处理字符串中的每个字符

在此程序的此处,我们将看到如何在C ++中遍历字符串的每个字符。要循环播放每个字符,我们可以使用从0到(字符串长度– 1)的循环。为了访问字符,我们可以使用下标运算符“ []”或at()字符串对象的函数。

Input: A string “Hello World”
Output: “Hello World”

算法

Step 1: Get the string
Step 2: Use R before string to make it raw string
Step 3: End

范例程式码

#include<iostream>
using namespace std;
main() {
   string my_str = "Hello World";
   for(int i = 0; i<my_str.length(); i++) {
      cout << my_str.at(i) << endl; //get character at position i
   }
}

输出结果

H
e
l
l
o

W
o
r
l
d