美文网首页
5.string字符串比较

5.string字符串比较

作者: lxr_ | 来源:发表于2021-04-04 14:57 被阅读0次
#include<iostream>
using namespace std;

//  =  返回  0
//  >  返回  1
//  <  返回  -1

void test0501()
{
    string str1 = "hello";
    string str2 = "xello";

    if (str1.compare(str2) == 0)
    {
        cout << "str1=str2" << endl;
    }
    else if (str1.compare(str2) > 0)
    {
        cout << "str1>str2" << endl;
    }
    else
    {
        cout << "str1<str2" << endl;
    }
}

int main()
{
    test0501();

    system("pause");
    return 0;
}

相关文章

  • 5.string字符串比较

  • String类特点分析

    字符串比较 public boolean equals(String str)方法比较字符串 字符串常量 字符串常...

  • XcodePoints(字符串)

    一,字符串之间比较: [strAisEqualToString:strB] ; //字符串之间比较: [A is...

  • 比较字符串

    如果数组第一个字符串元素包含了第二个字符串元素的所有字符,函数返回true。 举例,["hello", "Hell...

  • 字符串比较

    字符串比较里面最为常用的方法就是equals( )方法,但是这个方法需要注意的是会进行大小写的区分,除了equal...

  • 字符串比较

    Swift提供了3种方式去比较文本值:比较字符串和字符相等,比较前缀相等,比较后缀相等。 比较字符串和字符相等...

  • 字符串比较

    1、字符串长度JavaString d = "ddd";d.length();C#string str = "He...

  • 字符串比较

    将两个字符串进行计较,返回NSComparisonResult枚举结果 比较选项:NSStringCompareO...

  • 字符串比较

    比较标准 如果 num1 > num2 ,结果就是降序如果 num1 = num2 ,结果就是相等如果 num1 ...

  • 比较字符串

    比较两个字符串A和B,确定A中是否包含B中所有的字符。字符串A和B中的字符都是 大写字母 样例给出 A = "AB...

网友评论

      本文标题:5.string字符串比较

      本文链接:https://www.haomeiwen.com/subject/oxpxkltx.html