string::find_first_of()の使い方が変でしょうか? – プログラミング – Home

通知
すべてクリア

[解決済] string::find_first_of()の使い方が変でしょうか?


修行僧
 修行僧
(@修行僧)
ゲスト
結合: 16年前
投稿: 2
Topic starter  

よろしくです
文字列から、特定文字の出現位置を検索するため、下記の通り書いたのですが
元の、文字列に含まれない文字までが、string::nops以外の値を返してきます
string::find_first_of()関数の使い方がおかしいのでしょうか、ご教示願います。

#include <string>

using namespace std;

int main()
{
string::size_type lppos, rppos, cpos, pppos, spos, utpos, ltpos;
string plkey = (; string prkey = ); string ckey = ○; string pkey =
・; string skey = ■; string utkey = ▲; string ltkey = ▼;
string line = ○大域:整数型:Next[26];
lppos = rppos = cpos = pppos = spos = utpos = ltpos = -1;
lppos = line.string::find_first_of(plkey); // (のポジション
rppos = line.string::find_first_of(prkey); // )のポジション
cpos = line.string::find_first_of(ckey); // ○のポジション
pppos = line.string::find_first_of(pkey); // ・のポジション(戻り値0)
spos = line.string::find_first_of(skey); // ■のポジション(戻り値0)
utpos = line.string::find_first_of(utkey); // ▲のポジション(戻り値0)
ltpos = line.string::find_first_of(ltkey); // ▼のポジション(戻り値0)

return 0;
}
環境:VC8


引用未解決
トピックタグ
επιστημη
 επιστημη
(@επιστημη)
ゲスト
結合: 22年前
投稿: 1301
 

間違っています。マニュアルを読んでください。


返信引用
修行僧
 修行僧
(@修行僧)
ゲスト
結合: 16年前
投稿: 2
Topic starter  

επιστημηさんありがとうございました、勘違いをしてました。


返信引用

返信する

投稿者名

投稿者メールアドレス

タイトル *

プレビュー 0リビジョン 保存しました
共有:
タイトルとURLをコピーしました