ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFancyString.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 itkFancyString_h
20#define itkFancyString_h
21
22#include <string>
23#include <vector>
24#include <map>
25#include "itkArray.h"
26#include "ITKIOXMLExport.h"
27
28namespace itk
29{
30
45class ITKIOXML_EXPORT FancyString
46{
47public:
49 FancyString(const std::string & str);
50 FancyString(const char * s);
51
53 operator=(const std::string & str);
55 operator=(const char * s);
56
58 operator const char *() const;
59
61 // helper functions for converting a string to/from a std::vector
63
73 template <typename T>
75 ToData(std::vector<T> & outputData, int count = -1);
76
81 template <typename T>
83 FromData(const std::vector<T> & inputData);
84
86 // helper functions for converting a string to/from a itk::Array
88
98 template <typename T>
100 ToData(Array<T> & outputData, int count = -1);
101
106 template <typename T>
108 FromData(const Array<T> & inputData);
109
111 // helper functions for converting a string to/from a basic data type
113
117 operator const std::string &() const;
118
122 const std::string &
123 ToString() const;
124
129 template <typename T>
131 ToData(T & outputData);
132
137 template <typename T>
139 FromData(const T & inputData);
140
142 // helper functions for string manipulations
144
146 void
148
150 void
151 Append(const FancyString & str);
152
155 Trim(const std::string & dislike = " \t\n\r");
156
159 TrimLeft(const std::string & dislike = " \t\n\r");
160
163 TrimRight(const std::string & dislike = " \t\n\r");
164
168
172
174 void
175 Split(std::string & lpart, std::string & rpart, const std::string & delims = "=:") const;
176
178 void
179 Split(std::vector<std::string> & result, const std::string & delims = ";|") const;
180
185 void
186 Split(std::map<std::string, std::string> & result, const std::string & delims = ";|");
187
189 bool
190 MatchWith(const std::string & s2, bool ignoreCase = true);
191
193 bool
194 StartWith(const std::string & s2, bool ignoreCase = true);
195
197 bool
198 EndWith(const std::string & s2, bool ignoreCase = true);
199
201 bool
202 ContainSub(const std::string & s2, bool ignoreCase = true);
203
204private:
205 std::string m_Value;
206
207}; // class FancyString
208
209} // namespace itk
210
212// helper function to compare FancyString with std::string and char*
214
215bool ITKIOXML_EXPORT
216operator!=(itk::FancyString & s, const std::string &);
217bool ITKIOXML_EXPORT
218operator!=(itk::FancyString & s, const char *);
219bool ITKIOXML_EXPORT
221
222bool ITKIOXML_EXPORT
223operator==(itk::FancyString & s, const std::string &);
224bool ITKIOXML_EXPORT
225operator==(itk::FancyString & s, const char *);
226bool ITKIOXML_EXPORT
228
229namespace itk
230{
232// manipulators for FancyString (currently only one is defined)
234
239operator<<(FancyString & s, void (*mf)(FancyString &));
240
244void
246
248// helper functions for converting a string to/from a std::vector
250
256template <typename T>
258operator>>(FancyString & s, std::vector<T> & data);
259
264template <typename T>
266operator<<(FancyString & s, const std::vector<T> & data);
267
269// helper functions for converting a string to/from a itk::Array
271
277template <typename T>
280
285template <typename T>
287operator<<(FancyString & s, const Array<T> & data);
288
290// helper functions for converting a string to/from a basic data type
292
297template <typename T>
299operator>>(FancyString & s, T & data);
300
305template <typename T>
307operator<<(FancyString & s, const T & data);
308
309} // namespace itk
310
311#ifndef ITK_MANUAL_INSTANTIATION
312# include "itkFancyString.hxx"
313#endif
314
315#endif // itkFancyString_h
Array class with size defined at construction time.
Definition itkArray.h:48
A special string type that is used to aid I/O operations in DOM-based object readers/writers.
void Split(std::map< std::string, std::string > &result, const std::string &delims=";|")
FancyString & FromData(const std::vector< T > &inputData)
FancyString & ToLowerCase()
void Split(std::string &lpart, std::string &rpart, const std::string &delims="=:") const
FancyString & ToData(T &outputData)
FancyString & ToData(Array< T > &outputData, int count=-1)
FancyString & FromData(const Array< T > &inputData)
FancyString & TrimRight(const std::string &dislike=" \t\n\r")
bool StartWith(const std::string &s2, bool ignoreCase=true)
const std::string & ToString() const
FancyString & FromData(const T &inputData)
FancyString & operator=(const char *s)
std::string m_Value
FancyString(const char *s)
FancyString & TrimLeft(const std::string &dislike=" \t\n\r")
FancyString & ToData(std::vector< T > &outputData, int count=-1)
FancyString & Trim(const std::string &dislike=" \t\n\r")
void Append(const FancyString &str)
FancyString(const std::string &str)
bool ContainSub(const std::string &s2, bool ignoreCase=true)
bool MatchWith(const std::string &s2, bool ignoreCase=true)
void Split(std::vector< std::string > &result, const std::string &delims=";|") const
FancyString & operator=(const std::string &str)
bool EndWith(const std::string &s2, bool ignoreCase=true)
FancyString & ToUpperCase()
bool ITKIOXML_EXPORT operator==(itk::FancyString &s, const std::string &)
bool ITKIOXML_EXPORT operator!=(itk::FancyString &s, const std::string &)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
void ClearContent(FancyString &input)
std::istream & operator>>(std::istream &is, Point< T, VPointDimension > &vct)
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)