Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QString line = "example string";
ここで、「example」と「string」の間のスペースを消去して、この「examplestring」のような文字列を取得したいと考えています。指定されたインデックスの下の文字を消去する関数が Qt にありますか、それともこの関数を自分で作成する必要がありますか?
line = line.remove(index,1);
ドキュメントを参照してください