检查c中字符串的最后一个字符

前端之家收集整理的这篇文章主要介绍了检查c中字符串的最后一个字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有两种类型的字符串:
const char *str1 = "This is a string with \"quotes escaped at the end\""; 
const char *str2 = "This is a \"string\" without quotes at the end"; 

testFn(str1);
testFn(str2);

int testFn(const char *str)
{
  // test & return 1 if ends on no quote
  // test & return 0 if ends on quote
  return;
}

我想测试字符串是否以引号“结束”

什么是测试这个的好方法?谢谢

解决方法

不要忘记确保您的字符串至少包含1个字符:
int testFn(const char *str)
{
    return (str && *str && str[strlen(str) - 1] == '"') ? 0 : 1;
}
原文链接:https://www.f2er.com/c/120011.html

猜你在找的C&C++相关文章