ExchangeFileContents
Loading...
Searching...
No Matches
EuStdFunctions.h File Reference

Header for StdStringFunctions More...

#include <EuToolTypes.h>
#include "EuException.h"
#include <iomanip>
#include <string>
#include <vector>
#include <set>
#include <windows.h>
#include <ctime>
Include dependency graph for EuStdFunctions.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  eut
 
namespace  eut::StdStringFunctions
 Help functions for the processing of strings.
 
namespace  eut::TimeFunctions
 Help functions for the processing of time.
 

Enumerations

enum  eut::StdStringFunctions::EnCoutColor {
  eut::StdStringFunctions::eCOLOR_DEFAULT = 0 , eut::StdStringFunctions::eCOLOR_BLACK = 1 , eut::StdStringFunctions::eCOLOR_BLUE = 2 , eut::StdStringFunctions::eCOLOR_GREEN = 3 ,
  eut::StdStringFunctions::eCOLOR_LIGHTBLUE = 4 , eut::StdStringFunctions::eCOLOR_RED = 5 , eut::StdStringFunctions::eCOLOR_MAGENTA = 6 , eut::StdStringFunctions::eCOLOR_YELLOW = 7 ,
  eut::StdStringFunctions::eCOLOR_LIGHTGRAY = 8 , eut::StdStringFunctions::eCOLOR_GRAY = 9 , eut::StdStringFunctions::eCOLOR_WHITE = 10
}
 
enum  eut::StdStringFunctions::EnStrPos { eut::StdStringFunctions::eBEFORE , eut::StdStringFunctions::eBEHIND , eut::StdStringFunctions::eBOTH }
 

Functions

template<typename T >
std::string eut::StdStringFunctions::toHexstr (const T &rValue, std::size_t hex_len=sizeof(T)<< 1)
 
__tool_export_dll bool eut::StdStringFunctions::isAnInteger (const std::string &rstr)
 
__tool_export_dll void eut::StdStringFunctions::fillString (std::string &rstr, char cFillItem, std::size_t nNumber, EnStrPos ePos)
 
__tool_export_dll char * eut::StdStringFunctions::getFilledString (const char *pch, char cFillItem, std::size_t nNumber, EnStrPos ePos)
 
__tool_export_dll std::string eut::StdStringFunctions::getFilledString (const std::string &rstr, char cFillItem, std::size_t nNumber, EnStrPos ePos)
 
__tool_export_dll void eut::StdStringFunctions::tokenizeString (const std::string &rstrSource, std::vector< std::string > &rTokensVector, const std::string &rstrDelimiters=" ")
 
__tool_export_dll void eut::StdStringFunctions::tokenizeString (const std::string &rstrSource, std::vector< std::string > &rTokensVector, const char &rcDelimiters=' ')
 
__tool_export_dll void eut::StdStringFunctions::tokenizeString (const std::wstring &rwsSource, std::vector< std::wstring > &rTokensVector, wchar_t wcDelimiters=L' ')
 
__tool_export_dll std::size_t eut::StdStringFunctions::replaceAll (std::string &rstrText, const char pzOriginal, const char pzNew)
 
__tool_export_dll std::size_t eut::StdStringFunctions::replaceAll (std::string &rstrText, std::vector< std::size_t > &rPosVector, const char pzOriginal, const char pzNew)
 
__tool_export_dll std::wstring eut::StdStringFunctions::string2wstring (const std::string &rsSourceString)
 
__tool_export_dll std::string eut::StdStringFunctions::wstring2string (const std::wstring &rwsSourceString)
 
__tool_export_dll WORD eut::StdStringFunctions::setColorConsoleCout (EnCoutColor eForeGroundColor, EnCoutColor eBackGroundColor)
 
__tool_export_dll void eut::StdStringFunctions::resetColorConsoleCout (WORD wScreenBufferInfo)
 
__tool_export_dll std::string eut::TimeFunctions::getMonth (unsigned int uiMonth)
 
__tool_export_dll std::string eut::TimeFunctions::getMilitaryTime (const std::time_t &rTime)
 
__tool_export_dll std::string eut::TimeFunctions::getMilitarySystemTime ()
 
__tool_export_dll std::string eut::TimeFunctions::getTimeString (const std::time_t &rTime, const std::string &rsFormat="%Y.%m.%d - %X")
 
__tool_export_dll std::string eut::TimeFunctions::getSystemTimeString (const std::string &rsFormat="%Y.%m.%d - %X")
 
__tool_export_dll std::time_t eut::TimeFunctions::getTime (unsigned int uiYear, unsigned int uiMonth, unsigned int uiDay, unsigned int uiHour, unsigned int uiMin, unsigned int uiSec)
 
__tool_export_dll std::string eut::StdStringFunctions::toLower (const std::string &rstr)
 Converts all uppercase letters of the passed string to lowercase.
 
__tool_export_dll std::wstring eut::StdStringFunctions::toLower (const std::wstring &rstr)
 Converts all uppercase letters of the passed string to lowercase.
 
__tool_export_dll std::string eut::StdStringFunctions::toUpper (const std::string &rstr)
 Converts all lowercase letters of the passed string to uppercase.
 
__tool_export_dll std::wstring eut::StdStringFunctions::toUpper (const std::wstring &rstr)
 Converts all lowercase letters of the passed string to uppercase.
 
__tool_export_dll void eut::StdStringFunctions::trimString (std::string &rstr, char c=' ', EnStrPos ePos=eBEFORE)
 Trim for std::string inspired by:
 
__tool_export_dll void eut::StdStringFunctions::trimString (std::wstring &rstr, wchar_t c=' ', EnStrPos ePos=eBEFORE)
 Trim for std::string inspired by:
 
__tool_export_dll bool eut::StdStringFunctions::insertIfNotAvailable (std::string &rsText, std::size_t nPos, const std::string &rsIns)
 Inserts a string at the position passed, if not already present.
 
__tool_export_dll bool eut::StdStringFunctions::insertIfNotAvailable (std::wstring &rsText, std::size_t nPos, const std::wstring &rsIns)
 Inserts a string at the position passed, if not already present.
 
__tool_export_dll std::size_t eut::StdStringFunctions::replaceAll (std::string &rsText, const std::string &rsFnd, const std::string &rsRep)
 Exchanges all searched substrings in a string with another passed string.
 
__tool_export_dll std::size_t eut::StdStringFunctions::replaceAll (std::wstring &rsText, const std::wstring &rsFnd, const std::wstring &rsRep)
 Exchanges all searched substrings in a string with another passed string.
 
__tool_export_dll bool eut::StdStringFunctions::compareWildcardString (const std::string &rsSearchString, const std::string &rsString)
 Compares two std::string's.
 
__tool_export_dll bool eut::StdStringFunctions::compareWildcardString (const std::wstring &rsSearchString, const std::wstring &rsString)
 Compares two std::string's.
 
__tool_export_dll void eut::StdStringFunctions::colorConsoleCout (const std::string &rsCoutText, EnCoutColor eForeGroundColor, EnCoutColor eBackGroundColor)
 Outputs a string to the console in color.
 
__tool_export_dll void eut::StdStringFunctions::colorConsoleCout (const std::wstring &rsCoutText, EnCoutColor eForeGroundColor, EnCoutColor eBackGroundColor)
 Outputs a string to the console in color.
 

Detailed Description

Header for StdStringFunctions

Author
Helmut Jakoby

Terms of License The source code in this file is licensed.

SPDX-License-Identifier: LicenseRef-Helmut-Jakoby-Commercial-License OR LicenseRef-Helmut-Jakoby-Adapted-Prosperity-Public-License OR AGPL-3.0-or-later

Helmut-Jakoby-Commercial-License
For OEMs (Original Equipment Manufacturers), ISVs (Independent Software Vendors), VARs (Value Added Resellers) and other distributors who combine commercially licensed software with Software © by Helmut Jakoby and distribute it as such or in conjunction with another product and do not wish to publish the source code of the commercially licensed software under any other license that may be offered, a commercial license is available for this purpose. Please review the following information to ensure the Commercial-License requirements will be met: https://globalobjects.de/hjacomlicense_en.html .

Helmut-Jakoby-Adapted-Prosperity-Public-License
For developers of free, non-commercial software applications who want to combine and distribute their application with Software © by Helmut Jakoby, this license is a good option. Please review the following information to ensure the Adapted-Prosperity-Public-License requirements will be met: https://globalobjects.de/hjappllicense_en.html .

GNU Affero General Public License Usage
You can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Please review the following information to ensure the GNU Affero General Public License requirements will be met: https://www.gnu.org/licenses/agpl-3.0.en.html .