C++(20):通过starts_with/ends_with检查字符串

C++20提供了starts_with用于检查字符串是否以某个字符串开始,ends_with用于检查是否以某个字符串结束:

#include 
#include 
using namespace std;

int main()
{
    string str = "hello and 88";
    cout<

运行程序输出:

1

1

0

1

1

1

你可能感兴趣的:(C/C++,c++)