Maison >développement back-end >C++ >Comment supprimer efficacement les espaces de début, de fin et supplémentaires d'une chaîne C ?
Suppression des espaces de début et de fin d'une chaîne en C
Problème :
Comment faire pouvons-nous supprimer efficacement les espaces de début et de fin d’une chaîne C ? De plus, comment pouvons-nous étendre cette opération pour supprimer les espaces supplémentaires entre les mots dans la chaîne ?
Solution :
Suppression des espaces de début et de fin :
std::string trim(const std::string& str, const std::string& whitespace = " \t") { const auto strBegin = str.find_first_not_of(whitespace); if (strBegin == std::string::npos) return ""; // No content const auto strEnd = str.find_last_not_of(whitespace); const auto strRange = strEnd - strBegin + 1; return str.substr(strBegin, strRange); }
Réduction des espaces supplémentaires :
std::string reduce(const std::string& str, const std::string& fill = " ", const std::string& whitespace = " \t") { // Trim first auto result = trim(str, whitespace); // Replace sub ranges auto beginSpace = result.find_first_of(whitespace); while (beginSpace != std::string::npos) { const auto endSpace = result.find_first_not_of(whitespace, beginSpace); const auto range = endSpace - beginSpace; result.replace(beginSpace, range, fill); const auto newStart = beginSpace + fill.length(); beginSpace = result.find_first_of(whitespace, newStart); } return result; }
Exemple :
const std::string foo = " too much\t \tspace\t\t\t "; const std::string trimmedFoo = trim(foo); const std::string reducedFoo = reduce(foo); std::cout << "Original: " << foo << std::endl; std::cout << "Trimmed: " << trimmedFoo << std::endl; std::cout << "Reduced: " << reducedFoo << std::endl;
Sortie :
Original: too much space Trimmed: too much space Reduced: too-much-space
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!