X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.cxx;h=2b59ead196c478d29db85dfdd86ccb9c6dc3c691;hb=b8f1b0eb8c0977055c1ba39184e1c842dd80edf5;hp=c2e169ddb1563bb2f5fcb9288b6ff0c38340e395;hpb=1bc5ccd72098866fc29ca8a786e8bb6852f388ea;p=gdcm.git diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index c2e169dd..2b59ead1 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -1,10 +1,27 @@ -// gdcmUtil.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmUtil.cxx,v $ + Language: C++ + Date: $Date: 2004/09/27 08:39:08 $ + Version: $Revision: 1.50 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #include "gdcmUtil.h" #include "gdcmDebug.h" #include #include // For isspace #include // CLEANME: could this be only string ? Related to Win32 ? +#include /** * \ingroup Globals @@ -37,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 @@ -46,7 +86,7 @@ void Tokenize (const std::string& str, std::string CreateCleanString(std::string s) { std::string str=s; - for(int i=0;ipos2) + int pos1 = fullName.rfind("/"); + int pos2 = fullName.rfind("\\"); + if( pos1 > pos2) + { fullName.resize(pos1); + } else + { fullName.resize(pos2); - return(fullName); + } + return fullName; } /** @@ -106,7 +150,7 @@ std::string GetName(std::string &fullName) if (a == '/' || a == '\\') { fin--; } - int deb; + int deb = 0; for (int i=fin;i!=0;i--) { if (fullName.c_str()[i] == '/' || fullName.c_str()[i] == '\\') break; @@ -117,5 +161,5 @@ std::string GetName(std::string &fullName) for (int j=deb;j