ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkStringTools.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18
19#ifndef itkStringTools_h
20#define itkStringTools_h
21
22#include <vector>
23#include <map>
24#include "itkArray.h"
25#include "ITKIOXMLExport.h"
26
27namespace itk
28{
29
39class ITKIOXML_EXPORT StringTools
40{
41public:
43 // helper functions for converting a string to/from a std::vector
45
55 template <typename T>
56 static std::string &
57 ToData(std::string & s, std::vector<T> & data, int count = -1);
58
63 template <typename T>
64 static std::string &
65 FromData(std::string & s, const std::vector<T> & data);
66
68 // helper functions for converting a string to/from a itk::Array
70
80 template <typename T>
81 static std::string &
82 ToData(std::string & s, Array<T> & data, int count = -1);
83
88 template <typename T>
89 static std::string &
90 FromData(std::string & s, const Array<T> & data);
91
93 // helper functions for converting a string to/from a basic data type
95
100 template <typename T>
101 static std::string &
102 ToData(std::string & s, T & data);
103
108 template <typename T>
109 static std::string &
110 FromData(std::string & s, const T & data);
111
113 // helper functions for string manipulations
115
117 static std::string &
118 Trim(std::string & str, const std::string & dislike = " \t\n\r");
119
121 static std::string &
122 TrimLeft(std::string & str, const std::string & dislike = " \t\n\r");
123
125 static std::string &
126 TrimRight(std::string & str, const std::string & dislike = " \t\n\r");
127
129 static std::string &
130 ToUpperCase(std::string & str);
131
133 static std::string &
134 ToLowerCase(std::string & str);
135
137 static void
138 Split(const std::string & s, std::string & lpart, std::string & rpart, const std::string & delims = "=:");
139
141 static void
142 Split(const std::string & s, std::vector<std::string> & result, const std::string & delims = ";|");
143
148 static void
149 Split(const std::string & s, std::map<std::string, std::string> & result, const std::string & delims = ";|");
150
152 static bool
153 MatchWith(const std::string & s1, const std::string & s2, bool ignoreCase = true);
154
156 static bool
157 StartWith(const std::string & s1, const std::string & s2, bool ignoreCase = true);
158
160 static bool
161 EndWith(const std::string & s1, const std::string & s2, bool ignoreCase = true);
162
164 static bool
165 ContainSub(const std::string & s1, const std::string & s2, bool ignoreCase = true);
166}; // class StringTools
167
168} // namespace itk
169
170#ifndef ITK_MANUAL_INSTANTIATION
171# include "itkStringTools.hxx"
172#endif
173
174#endif // itkStringTools_h
Array class with size defined at construction time.
Definition itkArray.h:48
A set of tools to manipulate a string.
static void Split(const std::string &s, std::map< std::string, std::string > &result, const std::string &delims=";|")
static std::string & ToLowerCase(std::string &str)
static bool StartWith(const std::string &s1, const std::string &s2, bool ignoreCase=true)
static bool ContainSub(const std::string &s1, const std::string &s2, bool ignoreCase=true)
static std::string & FromData(std::string &s, const std::vector< T > &data)
static std::string & ToData(std::string &s, Array< T > &data, int count=-1)
static std::string & ToData(std::string &s, T &data)
static std::string & ToUpperCase(std::string &str)
static void Split(const std::string &s, std::vector< std::string > &result, const std::string &delims=";|")
static bool MatchWith(const std::string &s1, const std::string &s2, bool ignoreCase=true)
static std::string & TrimRight(std::string &str, const std::string &dislike=" \t\n\r")
static void Split(const std::string &s, std::string &lpart, std::string &rpart, const std::string &delims="=:")
static std::string & ToData(std::string &s, std::vector< T > &data, int count=-1)
static std::string & FromData(std::string &s, const Array< T > &data)
static std::string & Trim(std::string &str, const std::string &dislike=" \t\n\r")
static bool EndWith(const std::string &s1, const std::string &s2, bool ignoreCase=true)
static std::string & TrimLeft(std::string &str, const std::string &dislike=" \t\n\r")
static std::string & FromData(std::string &s, const T &data)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....