X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.cxx;h=ec96d5321b2941bf1cdcbc611d448212c812464b;hb=34cc82bb39edc5ad4cb83b1e8fbf5d50f854ecbf;hp=4c053864a287ec7e4d79a998f0b6334c7d8aec58;hpb=179f2dccd14c31668ef175e8e3373bf8b3121bd1;p=gdcm.git diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index 4c053864..ec96d532 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmUtil.cxx,v $ Language: C++ - Date: $Date: 2004/07/17 22:47:01 $ - Version: $Revision: 1.47 $ + Date: $Date: 2004/09/07 14:11:57 $ + Version: $Revision: 1.49 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -54,6 +54,29 @@ void Tokenize (const std::string& str, } } +/** + * \ingroup Globals + * \brief Because not available in C++ (?) + * Counts the number of occurences of a substring within a string + */ + + int CountSubstring (const std::string& str, + const std::string& subStr) { + int count = 0; // counts how many times it appears + unsigned int x = 0; // The index position in the string + + do + { x = str.find(subStr,x); // Find the substring + if (x != std::string::npos) // If present + { count++; // increase the count + x += subStr.length(); // Skip this word + } + } + while (x != std::string::npos); // Carry on until not present + + return count; +} + /** * \ingroup Globals * \brief Weed out a string from the non-printable characters (in order