找出字符串是否以C ++中的另一个字符串结尾

时间:2009-05-17 08:19:29

标签: c++ string ends-with

如何判断字符串是否以C ++中的另一个字符串结尾?

22 个答案:

答案 0 :(得分:191)

只需使用std::string::compare比较最后的 n 字符:

#include <iostream>

bool hasEnding (std::string const &fullString, std::string const &ending) {
    if (fullString.length() >= ending.length()) {
        return (0 == fullString.compare (fullString.length() - ending.length(), ending.length(), ending));
    } else {
        return false;
    }
}

int main () {
    std::string test1 = "binary";
    std::string test2 = "unary";
    std::string test3 = "tertiary";
    std::string test4 = "ry";
    std::string ending = "nary";

    std::cout << hasEnding (test1, ending) << std::endl;
    std::cout << hasEnding (test2, ending) << std::endl;
    std::cout << hasEnding (test3, ending) << std::endl;
    std::cout << hasEnding (test4, ending) << std::endl;

    return 0;
}

答案 1 :(得分:158)

使用此功能:

inline bool ends_with(std::string const & value, std::string const & ending)
{
    if (ending.size() > value.size()) return false;
    return std::equal(ending.rbegin(), ending.rend(), value.rbegin());
}

答案 2 :(得分:145)

使用boost::algorithm::ends_with(请参阅例如http://www.boost.org/doc/libs/1_34_0/doc/html/boost/algorithm/ends_with.html):

#include <boost/algorithm/string/predicate.hpp>

// works with const char* 
assert(boost::algorithm::ends_with("mystring", "ing"));

// also works with std::string
std::string haystack("mystring");
std::string needle("ing");
assert(boost::algorithm::ends_with(haystack, needle));

std::string haystack2("ng");
assert(! boost::algorithm::ends_with(haystack2, needle));

答案 3 :(得分:42)

注意,从c++20 std :: string开始最终会提供starts_withends_with。似乎有可能c ++中的c ++ 30字符串可能最终变得可用,如果你不是从遥远的未来读它,你可以使用这些startsWith / endsWith:

#include <string>

static bool endsWith(const std::string& str, const std::string& suffix)
{
    return str.size() >= suffix.size() && 0 == str.compare(str.size()-suffix.size(), suffix.size(), suffix);
}

static bool startsWith(const std::string& str, const std::string& prefix)
{
    return str.size() >= prefix.size() && 0 == str.compare(0, prefix.size(), prefix);
}

和一些额外的助手重载:

static bool endsWith(const std::string& str, const char* suffix, unsigned suffixLen)
{
    return str.size() >= suffixLen && 0 == str.compare(str.size()-suffixLen, suffixLen, suffix, suffixLen);
}

static bool endsWith(const std::string& str, const char* suffix)
{
    return endsWith(str, suffix, std::string::traits_type::length(suffix));
}

static bool startsWith(const std::string& str, const char* prefix, unsigned prefixLen)
{
    return str.size() >= prefixLen && 0 == str.compare(0, prefixLen, prefix, prefixLen);
}

static bool startsWith(const std::string& str, const char* prefix)
{
    return startsWith(str, prefix, std::string::traits_type::length(prefix));
}

IMO,c ++字符串显然功能失调,并没有在现实世界的代码中使用。但是希望这至少会好转。

答案 4 :(得分:38)

我知道C ++的问题,但是如果有人需要一个好的'C'功能来做这个:


/*  returns 1 iff str ends with suffix  */
int str_ends_with(const char * str, const char * suffix) {

  if( str == NULL || suffix == NULL )
    return 0;

  size_t str_len = strlen(str);
  size_t suffix_len = strlen(suffix);

  if(suffix_len > str_len)
    return 0;

  return 0 == strncmp( str + str_len - suffix_len, suffix, suffix_len );
}

答案 5 :(得分:25)

std::mismatch方法用于从两个字符串的末尾向后迭代时,const string sNoFruit = "ThisOneEndsOnNothingMuchFruitLike"; const string sOrange = "ThisOneEndsOnOrange"; const string sPattern = "Orange"; assert( mismatch( sPattern.rbegin(), sPattern.rend(), sNoFruit.rbegin() ) .first != sPattern.rend() ); assert( mismatch( sPattern.rbegin(), sPattern.rend(), sOrange.rbegin() ) .first == sPattern.rend() ); 方法可以实现此目的:

{{1}}

答案 6 :(得分:11)

在我看来最简单的,C ++解决方案是:

bool endsWith(const string& s, const string& suffix)
{
    return s.rfind(suffix) == (s.size()-suffix.size());
}

答案 7 :(得分:9)

a为字符串,b为您查找的字符串。使用a.substr获取a的最后n个字符,并将它们与b进行比较(其中n是b的长度)

或使用std::equal(包括<algorithm>

例如:

bool EndsWith(const string& a, const string& b) {
    if (b.size() > a.size()) return false;
    return std::equal(a.begin() + a.size() - b.size(), a.end(), b.begin());
}

答案 8 :(得分:4)

使用<algorithms>中的std :: equal算法进行反向迭代:

std::string LogExt = ".log";
if (std::equal(LogExt.rbegin(), LogExt.rend(), filename.rbegin())) {
   …
}

答案 9 :(得分:3)

您可以使用string::rfind

基于评论的完整示例:

bool EndsWith(string &str, string& key)
{
size_t keylen = key.length();
size_t strlen = str.length();

if(keylen =< strlen)
    return string::npos != str.rfind(key,strlen - keylen, keylen);
else return false;
}

答案 10 :(得分:3)

让我用不区分大小写的版本(Joseph's solution

扩展online demo
static bool EndsWithCaseInsensitive(const std::string& value, const std::string& ending) {
    if (ending.size() > value.size()) {
        return false;
    }
    return std::equal(ending.rbegin(), ending.rend(), value.rbegin(),
        [](const char a, const char b) {
            return tolower(a) == tolower(b);
        }
    );
}

答案 11 :(得分:2)

如果和我一样,您需要 EndsWith 来检查文件扩展名,您可以使用 std::filesystem 库:

std::filesystem::path("/foo/bar.txt").extension() == ".txt"

答案 12 :(得分:2)

与上述相同,这是我的解决方案

 template<typename TString>
  inline bool starts_with(const TString& str, const TString& start) {
    if (start.size() > str.size()) return false;
    return str.compare(0, start.size(), start) == 0;
  }
  template<typename TString>
  inline bool ends_with(const TString& str, const TString& end) {
    if (end.size() > str.size()) return false;
    return std::equal(end.rbegin(), end.rend(), str.rbegin());
  }

答案 13 :(得分:1)

使用以下内容检查 str 是否后缀

/*
Check string is end with extension/suffix
*/
int strEndWith(char* str, const char* suffix)
{
  size_t strLen = strlen(str);
  size_t suffixLen = strlen(suffix);
  if (suffixLen <= strLen) {
    return strncmp(str + strLen - suffixLen, suffix, suffixLen) == 0;
  }
  return 0;
}

答案 14 :(得分:1)

找到了类似的“ startWith”问题的好答案:

How do I check if a C++ std::string starts with a certain string, and convert a substring to an int?

您可以采用该解决方案以仅在字符串的最后位置进行搜索:

bool endsWith(const std::string& stack, const std::string& needle) {
    return stack.find(needle, stack.size() - needle.size()) != std::string::npos;
}

通过这种方式,您可以使其简短,快速,使用标准c ++并使其可读。

答案 15 :(得分:1)

关于Grzegorz Bazior的回应。我使用了这个实现,但原始的有bug(如果我将“..”与“.so”进行比较,则返回true)。 我建议修改功能:

bool endsWith(const string& s, const string& suffix)
{
    return s.size() >= suffix.size() && s.rfind(suffix) == (s.size()-suffix.size());
}

答案 16 :(得分:0)

我认为发布不使用任何库函数的原始解决方案是有意义的......

team rocket

添加一个简单的// Checks whether `str' ends with `suffix' bool endsWith(const std::string& str, const std::string& suffix) { if (&suffix == &str) return true; // str and suffix are the same string if (suffix.length() > str.length()) return false; size_t delta = str.length() - suffix.length(); for (size_t i = 0; i < suffix.length(); ++i) { if (suffix[i] != str[delta + i]) return false; } return true; } ,我们可以使这种情况不敏感

std::tolower

答案 17 :(得分:0)

如果你像我一样而不是C ++纯粹主义,那么这就是一个古老的skool混合体。当字符串超过少数字符时有一些优势,因为大多数memcmp实现在可能的情况下比较机器字。

您需要控制字符集。例如,如果此方法与utf-8或wchar类型一起使用,则存在一些缺点,因为它不支持字符映射 - 例如,当两个或多个字符为logically identical时。

bool starts_with(std::string const & value, std::string const & prefix)
{
    size_t valueSize = value.size();
    size_t prefixSize = prefix.size();

    if (prefixSize > valueSize)
    {
        return false;
    }

    return memcmp(value.data(), prefix.data(), prefixSize) == 0;
}


bool ends_with(std::string const & value, std::string const & suffix)
{
    size_t valueSize = value.size();
    size_t suffixSize = suffix.size();

    if (suffixSize > valueSize)
    {
        return false;
    }

    const char * valuePtr = value.data() + valueSize - suffixSize;

    return memcmp(valuePtr, suffix.data(), suffixSize) == 0;
}

答案 18 :(得分:0)

另一个选择是使用正则表达式。以下代码使搜索不区分大小写:

bool endsWithIgnoreCase(const std::string& str, const std::string& suffix) {
  return std::regex_search(str,
     std::regex(std::string(suffix) + "$", std::regex_constants::icase));
}

可能效率不高,但易于实现。

答案 19 :(得分:0)

我的两分钱

bool endsWith(std::string str, std::string suffix)
{
   return str.find(suffix, str.size() - suffix.size()) != string::npos;
}

答案 20 :(得分:0)

bool endswith(const std::string &str, const std::string &suffix)
{
    string::size_type totalSize = str.size();
    string::size_type suffixSize = suffix.size();

    if(totalSize < suffixSize) {
        return false;
    }

    return str.compare(totalSize - suffixSize, suffixSize, suffix) == 0;
}

答案 21 :(得分:0)

bool EndsWith(const std::string& data, const std::string& suffix)
{
    return data.find(suffix, data.size() - suffix.size()) != string::npos;
}

测试

#include <iostream>
int main()
{
   cout << EndsWith(u8"o!hello!1", u8"o!") << endl; 
   cout << EndsWith(u8"o!hello!", u8"o!") << endl; 
   cout << EndsWith(u8"hello!", u8"o!") << endl; 
   cout << EndsWith(u8"o!hello!o!", u8"o!") << endl; 
   return 0;
}

输出

0 
1 
1 
1