從它的每個值我需要拆分在C++ .
字符串..拆分上點串並檢索C++
下面是我的字符串 -
@event.hello.dc1
現在我需要上.
拆分上述串並從中檢索@event再通@event
於下述方法 -
bool upsert(const char* key);
下面是我從here看完後這麼遠的代碼 -
void splitString() {
string sentence = "@event.hello.dc1";
istringstream iss(sentence);
copy(istream_iterator<string>(iss), istream_iterator<string>(), ostream_iterator<string>(cout, "\n"));
}
但我無法理解如何通過拆分對.
使用上述方法,上述方法只能提取@event
爲空白......同時也可作爲類似下面如何提取一切從.
該字符串的分裂 -
split1 = @event
split2 = hello
split3 = dc1
感謝您的幫助..
http://stackoverflow.com/questions/236129/how-to-split-a-string-in-c – Ashalynd
http://stackoverflow.com/問題/ 5167625/splitti ng-ac-stdstring-using-token-eg – Kunal