亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中string常用截取字符串方法是什么

發布時間:2022-04-14 16:53:05 來源:億速云 閱讀:3876 作者:iii 欄目:編程語言

本文小編為大家詳細介紹“C++中string常用截取字符串方法是什么”,內容詳細,步驟清晰,細節處理妥當,希望這篇“C++中string常用截取字符串方法是什么”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

string常用截取字符串方法有很多,但是配合使用以下兩種,基本都能滿足要求:

find(string strSub, npos);

find_last_of(string strSub, npos);

其中strSub是需要尋找的子字符串,npos為查找起始位置。找到返回子字符串首次出現的位置,否則返回-1;

注:

(1)find_last_of的npos為從末尾開始尋找的位置。

(2)下文中用到的strsub(npos,size)函數,其中npos為開始位置,size為截取大小

例1:直接查找字符串中是否具有某個字符串(返回"2")

std::string strPath = "E:\\數據\\2018\\2000坐標系\\a.shp"
int a = 0; 
if (strPath.find("2018") == std::string::npos)
{
	a = 1;
}
else
{
	a = 2;
}
return a;

例2:查找某個字符串的字符串(返回“E:”)

std::string strPath = "E:\\數據\\2018\\2000坐標系\\a.shp"
int nPos = strPath.find("\\");
if(nPos != -1)
{
  strPath = strPath.substr(0, nPos);
}
return strPath;

例3:查找某個字符串中某兩個子字符串之間的字符串(返回“2000坐標系”)

std::string strPath = "E:\\數據\\2018\\2000坐標系\\a.shp"
std::string::size_type nPos1 = std::string::npos;
std::string::size_type nPos2 = std::string::npos;
nPos1 = strPath.find_last_of("\\");
nPos2 = strPath.find_last_of("\\", nPos1 - 1);
if(nPos1 !=-1 && npos2 != -1)
{
  strPath = strPath.substr(nPos2 + 1, nPos1 - nPos2 - 1);
}
return strPath;

提高:遞歸獲取路徑名中的子目錄

//獲取路徑名中的子目錄:strPath為路徑名,strSubPath為輸出的子目錄,
 nSearch為從尾向前檢索的級別(默認為1級)
 
bool _GetSubPath(std::string& strPath,std::string& strSubPath, int nSearch)
{	
	if (-1 == nSearch || strPath.empty())
		return false;
	std::string::size_type nPos1 = std::string::npos;
	nPos1 = strPath.find_last_of("\\");
	if (nPos1 != -1)
	{
		strSubPath = strPath.substr(nPos1 + 1, strPath.length() - nPos1);
		int nNewSearch = nSearch > 1 ? nSearch - 1 : -1;
		_GetSubPath(strPath.substr(0, nPos1), strSubPath, nNewSearch);
	}
	return true;
}
 
int main()
{
  std::string strPath = "E:\\數據\\2018\\2000坐標系\\a.shp";
  std::string strSubPath = "";
  if(_GetSubPath(strPath, strSubPath, 1)
  {
    printf(“返回'a.shp'”);
  }
  if(_GetSubPath(strPath, strSubPath, 2)
  {
    printf(“返回'2000坐標系'”);
  }
}

讀到這里,這篇“C++中string常用截取字符串方法是什么”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鲁甸县| 枣强县| 满洲里市| 将乐县| 正宁县| 遵化市| 玉山县| 鄂尔多斯市| 台北县| 盈江县| 唐河县| 台安县| 托克托县| 论坛| 蕲春县| 尤溪县| 扶绥县| 柞水县| 文化| 浙江省| 康乐县| 洮南市| 同心县| 集贤县| 兖州市| 彝良县| 凯里市| 大港区| 商都县| 宝山区| 鄂伦春自治旗| 萨嘎县| 无极县| 遂宁市| 凤山市| 兴和县| 晋州市| 麦盖提县| 洛南县| 祁阳县| 赤壁市|