C ++で文字列の一部を別の文字列に置き換えることはできますか?
基本的に、私はこれをしたいと思います:
QString string("hello $name");
string.replace("$name", "Somename");
しかし、標準C ++ライブラリを使用したいと思います。
C ++で文字列の一部を別の文字列に置き換えることはできますか?
基本的に、私はこれをしたいと思います:
QString string("hello $name");
string.replace("$name", "Somename");
しかし、標準C ++ライブラリを使用したいと思います。
回答:
文字列内の部分文字列を検索する関数(find
)と、文字列の特定の範囲を別の文字列(replace
)に置き換える関数があります。これらを組み合わせて、目的の効果を得ることができます。
bool replace(std::string& str, const std::string& from, const std::string& to) {
size_t start_pos = str.find(from);
if(start_pos == std::string::npos)
return false;
str.replace(start_pos, from.length(), to);
return true;
}
std::string string("hello $name");
replace(string, "$name", "Somename");
コメントに応じて、私replaceAll
はおそらく次のようなものになると思います:
void replaceAll(std::string& str, const std::string& from, const std::string& to) {
if(from.empty())
return;
size_t start_pos = 0;
while((start_pos = str.find(from, start_pos)) != std::string::npos) {
str.replace(start_pos, from.length(), to);
start_pos += to.length(); // In case 'to' contains 'from', like replacing 'x' with 'yx'
}
}
from
、参照to
ごとに渡されconst
ますか?from
ない場合、あなたの機能は何ですか?-1
そのために私から。
const
と私はこのようなユーティリティメソッドを書いた場合、私は知っていた場合、私はそれを呼ぶだろう交換は有効でした
const
とは、C ++の最高のツールの1つを無視することです。参照ごとの受け渡しはconst
、関数パラメーターのデフォルトモードである必要があります。(FTR、なしではconst
、テンポラリを非const
参照にバインドできないため、文字列リテラルを関数に渡すこともできませんでした。そのため、関数は書き込まれたことを実行しませんでした。)
C ++ 11ではstd::regex
、次のように使用できます。
#include <regex>
...
std::string string("hello $name");
string = std::regex_replace(string, std::regex("\\$name"), "Somename");
エスケープ文字をエスケープするには、二重の円記号が必要です。
std::regex_replace
Qtの文字列を受け入れないことは確かです。
string
しstring.toStdString()
。
String
するだけstd::string
です。そうすることを検討してください-私は後で喜んであなたの答えに投票します。
R"(\$name)"
代わりに書き込むことができます"\\$name"
。
std::string
しているreplace
、あなたが探しているものという方法がありますか?
あなたは試すことができます:
s.replace(s.find("$name"), sizeof("$name") - 1, "Somename");
私はまだ試していません。find()
とのドキュメントを読んでくださいreplace()
。
新しい文字列を返すには、これを使用します。
std::string ReplaceString(std::string subject, const std::string& search,
const std::string& replace) {
size_t pos = 0;
while ((pos = subject.find(search, pos)) != std::string::npos) {
subject.replace(pos, search.length(), replace);
pos += replace.length();
}
return subject;
}
パフォーマンスが必要な場合は、入力文字列を変更する最適化された関数を次に示します。文字列のコピーは作成されません。
void ReplaceStringInPlace(std::string& subject, const std::string& search,
const std::string& replace) {
size_t pos = 0;
while ((pos = subject.find(search, pos)) != std::string::npos) {
subject.replace(pos, search.length(), replace);
pos += replace.length();
}
}
テスト:
std::string input = "abc abc def";
std::cout << "Input string: " << input << std::endl;
std::cout << "ReplaceString() return value: "
<< ReplaceString(input, "bc", "!!") << std::endl;
std::cout << "ReplaceString() input string not modified: "
<< input << std::endl;
ReplaceStringInPlace(input, "bc", "??");
std::cout << "ReplaceStringInPlace() input string modified: "
<< input << std::endl;
出力:
Input string: abc abc def
ReplaceString() return value: a!! a!! def
ReplaceString() input string not modified: abc abc def
ReplaceStringInPlace() input string modified: a?? a?? def
はい、できますが、最初の文字列の位置を文字列のfind()メンバーで見つけ、それをreplace()メンバーで置き換える必要があります。
string s("hello $name");
size_type pos = s.find( "$name" );
if ( pos != string::npos ) {
s.replace( pos, 5, "somename" ); // 5 = length( $name )
}
標準ライブラリの使用を計画している場合は、このすべてを非常によくカバーするC ++標準ライブラリという本のコピーを手に入れる必要が あります。
私はこれを一般的に使用します:
std::string& replace(std::string& s, const std::string& from, const std::string& to)
{
if(!from.empty())
for(size_t pos = 0; (pos = s.find(from, pos)) != std::string::npos; pos += to.size())
s.replace(pos, from.size(), to);
return s;
}
何も見つからなくなるstd::string::find()
まで、検索された文字列の他の出現箇所を見つけるために繰り返し呼び出しますstd::string::find()
。マッチstd::string::find()
の位置を返すので、イテレータを無効にする問題はありません。
これはオプションのように聞こえます
string.replace(string.find("%s"), string("%s").size(), "Something");
これを関数でラップすることもできますが、この1行のソリューションは許容できるようです。問題は、これにより最初の発生のみが変更されることです。ループすることもできますが、同じトークン(%s
)を使用してこの文字列に複数の変数を挿入することもできます。
str.replace(str.find("%s"), string("%s").size(), "Something");
すべての文字列がstd :: stringである場合sizeof()
、C ++文字列ではなくC文字列を対象としているため、文字のカットオフを使用すると奇妙な問題が発生します。修正は、の.size()
クラスメソッドを使用することですstd::string
。
sHaystack.replace(sHaystack.find(sNeedle), sNeedle.size(), sReplace);
これはインラインでsHaystackを置き換えます-その上で=代入を行う必要はありません。
使用例:
std::string sHaystack = "This is %XXX% test.";
std::string sNeedle = "%XXX%";
std::string sReplace = "my special";
sHaystack.replace(sHaystack.find(sNeedle),sNeedle.size(),sReplace);
std::cout << sHaystack << std::endl;
wstring myString = L"Hello $$ this is an example. By $$.";
wstring search = L"$$";
wstring replace = L"Tom";
for (int i = myString.find(search); i >= 0; i = myString.find(search))
myString.replace(i, search.size(), replace);
すばやく実行したい場合は、2スキャンアプローチを使用できます。疑似コード:
これをインプレースアルゴに最適化できるかどうかはわかりません。
C ++ 11のコード例ですが、1文字しか検索しません。
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
void ReplaceString(string& subject, char search, const string& replace)
{
size_t initSize = subject.size();
int count = 0;
for (auto c : subject) {
if (c == search) ++count;
}
size_t idx = subject.size()-1 + count * replace.size()-1;
subject.resize(idx + 1, '\0');
string reverseReplace{ replace };
reverse(reverseReplace.begin(), reverseReplace.end());
char *end_ptr = &subject[initSize - 1];
while (end_ptr >= &subject[0])
{
if (*end_ptr == search) {
for (auto c : reverseReplace) {
subject[idx - 1] = c;
--idx;
}
}
else {
subject[idx - 1] = *end_ptr;
--idx;
}
--end_ptr;
}
}
int main()
{
string s{ "Mr John Smith" };
ReplaceString(s, ' ', "%20");
cout << s << "\n";
}
std::string replace(std::string base, const std::string from, const std::string to) {
std::string SecureCopy = base;
for (size_t start_pos = SecureCopy.find(from); start_pos != std::string::npos; start_pos = SecureCopy.find(from,start_pos))
{
SecureCopy.replace(start_pos, from.length(), to);
}
return SecureCopy;
}
私の実装では、文字列のサイズを1回だけ変更する必要があることを考慮して、置換を行うことができます。
template <typename T>
std::basic_string<T> replaceAll(const std::basic_string<T>& s, const T* from, const T* to)
{
auto length = std::char_traits<T>::length;
size_t toLen = length(to), fromLen = length(from), delta = toLen - fromLen;
bool pass = false;
std::string ns = s;
size_t newLen = ns.length();
for (bool estimate : { true, false })
{
size_t pos = 0;
for (; (pos = ns.find(from, pos)) != std::string::npos; pos++)
{
if (estimate)
{
newLen += delta;
pos += fromLen;
}
else
{
ns.replace(pos, fromLen, to);
pos += delta;
}
}
if (estimate)
ns.resize(newLen);
}
return ns;
}
使用法は、たとえば次のようになります。
std::string dirSuite = replaceAll(replaceAll(relPath.parent_path().u8string(), "\\", "/"), ":", "");
私は今C ++を学習していますが、以前に投稿されたコードの一部を編集しているので、おそらくこのようなものを使用します。これにより、1つまたは複数のインスタンスを柔軟に置き換えることができ、開始点を指定することもできます。
using namespace std;
// returns number of replacements made in string
long strReplace(string& str, const string& from, const string& to, size_t start = 0, long count = -1) {
if (from.empty()) return 0;
size_t startpos = str.find(from, start);
long replaceCount = 0;
while (startpos != string::npos){
str.replace(startpos, from.length(), to);
startpos += to.length();
replaceCount++;
if (count > 0 && replaceCount >= count) break;
startpos = str.find(from, startpos);
}
return replaceCount;
}
これは使用するのがさらに良いかもしれません
void replace(string& input, const string& from, const string& to)
{
while(true)
{
size_t startPosition = input.find(from);
if(startPosition == string::npos)
break;
input.replace(startPosition, from.length(), to);
}
}