Lines Matching refs:str
45 std::string str = "The,weather,is,fine,today";
46 std::vector<std::string> subStr = Split(str, STATUS_LINE_COMMA);
57 std::string str = " The weather is fine today";
58 std::string subStr = Strip(str, SPACE);
64 std::string str = "HOWDOYOUDO";
65 std::string strLower = ToLower(str);
71 std::string str = "fine today";
72 std::vector<std::string> strList = Split(str, STATUS_LINE_SEP, STATUS_LINE_ELEM_NUM);
81 std::string str = " trim ";
82 std::string strResult = Trim(str);
196 std::string str = "www.alibaba.com";
199 bool actualOutput = IsExcluded(str, exclusions, ",");
205 std::string str = "www.alibaba.com";
207 bool actualOutput = IsExcluded(str, exclusions, ",");