Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
4350ca0d
Commit
4350ca0d
authored
Feb 29, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
str_util
parent
08f90e77
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
283 additions
and
46 deletions
+283
-46
str_util.h
jlib/util/str_util.h
+37
-46
test.sln
test/test.sln
+11
-0
test_stdutil.cpp
test/test_stdutil/test_stdutil.cpp
+2
-0
test_strutil.cpp
test/test_strutil/test_strutil.cpp
+61
-0
test_strutil.vcxproj
test/test_strutil/test_strutil.vcxproj
+146
-0
test_strutil.vcxproj.filters
test/test_strutil/test_strutil.vcxproj.filters
+22
-0
test_strutil.vcxproj.user
test/test_strutil/test_strutil.vcxproj.user
+4
-0
No files found.
jlib/util/str_util.h
View file @
4350ca0d
...
...
@@ -9,83 +9,49 @@ namespace jlib
/**************************** trim ***************************/
// Taken from https://stackoverflow.com/a/217605/2963736
// Thanks https://stackoverflow.com/users/13430/evan-teran
//************ string **************//
// trim from start (in place)
inline
void
ltrim
(
std
::
string
&
s
)
{
template
<
typename
StringType
>
inline
void
ltrim
(
StringType
&
s
)
{
s
.
erase
(
s
.
begin
(),
std
::
find_if
(
s
.
begin
(),
s
.
end
(),
[](
int
ch
)
{
return
!
std
::
isspace
(
ch
);
}));
}
// trim from end (in place)
inline
void
rtrim
(
std
::
string
&
s
)
{
template
<
typename
StringType
>
inline
void
rtrim
(
StringType
&
s
)
{
s
.
erase
(
std
::
find_if
(
s
.
rbegin
(),
s
.
rend
(),
[](
int
ch
)
{
return
!
std
::
isspace
(
ch
);
}).
base
(),
s
.
end
());
}
// trim from both ends (in place)
inline
void
trim
(
std
::
string
&
s
)
{
template
<
typename
StringType
>
inline
void
trim
(
StringType
&
s
)
{
ltrim
(
s
);
rtrim
(
s
);
}
// trim from start (copying)
inline
std
::
string
ltrim_copy
(
std
::
string
s
)
{
template
<
typename
StringType
>
inline
StringType
ltrim_copy
(
StringType
s
)
{
ltrim
(
s
);
return
s
;
}
// trim from end (copying)
inline
std
::
string
rtrim_copy
(
std
::
string
s
)
{
template
<
typename
StringType
>
inline
StringType
rtrim_copy
(
StringType
s
)
{
rtrim
(
s
);
return
s
;
}
// trim from both ends (copying)
inline
std
::
string
trim_copy
(
std
::
string
s
)
{
trim
(
s
);
return
s
;
}
//************ wstring **************//
// trim from start (in place)
inline
void
ltrim
(
std
::
wstring
&
s
)
{
s
.
erase
(
s
.
begin
(),
std
::
find_if
(
s
.
begin
(),
s
.
end
(),
[](
int
ch
)
{
return
!
std
::
isspace
(
ch
);
}));
}
// trim from end (in place)
inline
void
rtrim
(
std
::
wstring
&
s
)
{
s
.
erase
(
std
::
find_if
(
s
.
rbegin
(),
s
.
rend
(),
[](
int
ch
)
{
return
!
std
::
isspace
(
ch
);
}).
base
(),
s
.
end
());
}
// trim from both ends (in place)
inline
void
trim
(
std
::
wstring
&
s
)
{
ltrim
(
s
);
rtrim
(
s
);
}
// trim from start (copying)
inline
std
::
wstring
ltrim_copy
(
std
::
wstring
s
)
{
ltrim
(
s
);
return
s
;
}
// trim from end (copying)
inline
std
::
wstring
rtrim_copy
(
std
::
wstring
s
)
{
rtrim
(
s
);
return
s
;
}
// trim from both ends (copying)
inline
std
::
wstring
trim_copy
(
std
::
wstring
s
)
{
template
<
typename
StringType
>
inline
StringType
trim_copy
(
StringType
s
)
{
trim
(
s
);
return
s
;
}
/**************************** join ***************************/
/**
* @brief join 字符串
* @note StringType 可以为std::string或std::wstring
...
...
@@ -108,4 +74,29 @@ StringType join(const StringContainer& container, const StringType& conjunction
return
result
;
}
/**************************** remove_all ***************************/
// taken from https://stackoverflow.com/a/20326454
/**
* @brief 从字符串str内移除所有c字符
*/
inline
void
remove_all
(
std
::
string
&
str
,
char
c
)
{
str
.
erase
(
std
::
remove
(
str
.
begin
(),
str
.
end
(),
c
),
str
.
end
());
}
inline
void
remove_all
(
std
::
wstring
&
str
,
wchar_t
c
)
{
str
.
erase
(
std
::
remove
(
str
.
begin
(),
str
.
end
(),
c
),
str
.
end
());
}
inline
std
::
string
remove_all_copy
(
std
::
string
str
,
char
c
)
{
str
.
erase
(
std
::
remove
(
str
.
begin
(),
str
.
end
(),
c
),
str
.
end
());
return
str
;
}
inline
std
::
wstring
remove_all_copy
(
std
::
wstring
str
,
wchar_t
c
)
{
str
.
erase
(
std
::
remove
(
str
.
begin
(),
str
.
end
(),
c
),
str
.
end
());
return
str
;
}
}
// namespace jlib
test/test.sln
View file @
4350ca0d
...
...
@@ -289,6 +289,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testPathHelperDataSeperated
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple7zwrapper", "simple7zwrapper\simple7zwrapper.vcxproj", "{41C26D67-0174-41AC-850E-1F84181138E5}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_strutil", "test_strutil\test_strutil.vcxproj", "{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
...
...
@@ -579,6 +581,14 @@ Global
{41C26D67-0174-41AC-850E-1F84181138E5}.Release|x64.Build.0 = Release|x64
{41C26D67-0174-41AC-850E-1F84181138E5}.Release|x86.ActiveCfg = Release|Win32
{41C26D67-0174-41AC-850E-1F84181138E5}.Release|x86.Build.0 = Release|Win32
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Debug|x64.ActiveCfg = Debug|x64
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Debug|x64.Build.0 = Debug|x64
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Debug|x86.ActiveCfg = Debug|Win32
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Debug|x86.Build.0 = Debug|Win32
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Release|x64.ActiveCfg = Release|x64
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Release|x64.Build.0 = Release|x64
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Release|x86.ActiveCfg = Release|Win32
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
@@ -644,6 +654,7 @@ Global
{281CEC62-CE6E-4FD6-B186-AEF2BA926BF8} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
{ECF057F3-AB01-4129-8C5C-E59DD4261770} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
{41C26D67-0174-41AC-850E-1F84181138E5} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3} = {ABCB8CF8-5E82-4C47-A0FC-E82DF105DF99}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
...
...
test/test_stdutil/test_stdutil.cpp
View file @
4350ca0d
#include "../../jlib/util/std_util.h"
#include <assert.h>
int
main
()
{
std
::
vector
<
int
>
All
{
1
,
2
,
3
,
4
,
5
};
std
::
vector
<
int
>
Sub
{
1
,
2
,
3
};
auto
other
=
jlib
::
get_other
(
All
,
Sub
);
assert
(
other
==
std
::
vector
<
int
>
({
4
,
5
}));
}
test/test_strutil/test_strutil.cpp
0 → 100644
View file @
4350ca0d
#include "../../jlib/util/str_util.h"
#include <assert.h>
#include <vector>
#include <list>
using
namespace
std
;
using
namespace
jlib
;
int
main
()
{
// trim
{
string
str
=
" abcdef "
;
assert
(
ltrim_copy
(
str
)
==
"abcdef "
);
assert
(
rtrim_copy
(
str
)
==
" abcdef"
);
assert
(
trim_copy
(
str
)
==
"abcdef"
);
ltrim
(
str
);
assert
(
str
==
"abcdef "
);
rtrim
(
str
);
assert
(
str
==
"abcdef"
);
str
=
" abcdef "
;
trim
(
str
);
assert
(
str
==
"abcdef"
);
}
// join
{
vector
<
string
>
v
=
{
"a"
,
"b"
,
"c"
};
list
<
string
>
l
=
{
"d"
,
"e"
,
"f"
};
assert
(
join
(
v
,
string
(
"-"
))
==
"a-b-c"
);
assert
(
join
(
l
,
string
(
"-"
))
==
"d-e-f"
);
vector
<
wstring
>
wv
=
{
L"a"
,
L"b"
,
L"c"
};
list
<
wstring
>
wl
=
{
L"d"
,
L"e"
,
L"f"
};
assert
(
join
(
wv
,
wstring
(
L"-"
))
==
L"a-b-c"
);
assert
(
join
(
wl
,
wstring
(
L"-"
))
==
L"d-e-f"
);
}
// remove_all
{
string
str
=
"aabbcc"
;
assert
(
remove_all_copy
(
str
,
'a'
)
==
"bbcc"
);
assert
(
remove_all_copy
(
str
,
'b'
)
==
"aacc"
);
assert
(
remove_all_copy
(
str
,
'c'
)
==
"aabb"
);
remove_all
(
str
,
'a'
);
assert
(
str
==
"bbcc"
);
remove_all
(
str
,
'b'
);
assert
(
str
==
"cc"
);
remove_all
(
str
,
'c'
);
assert
(
str
==
""
);
wstring
wstr
=
L"aabbcc"
;
assert
(
remove_all_copy
(
wstr
,
L'a'
)
==
L"bbcc"
);
assert
(
remove_all_copy
(
wstr
,
L'b'
)
==
L"aacc"
);
assert
(
remove_all_copy
(
wstr
,
L'c'
)
==
L"aabb"
);
remove_all
(
wstr
,
L'a'
);
assert
(
wstr
==
L"bbcc"
);
remove_all
(
wstr
,
L'b'
);
assert
(
wstr
==
L"cc"
);
remove_all
(
wstr
,
L'c'
);
assert
(
wstr
==
L""
);
}
}
\ No newline at end of file
test/test_strutil/test_strutil.vcxproj
0 → 100644
View file @
4350ca0d
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup
Label=
"ProjectConfigurations"
>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|x64"
>
<Configuration>
Debug
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x64"
>
<Configuration>
Release
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<VCProjectVersion>
16.0
</VCProjectVersion>
<ProjectGuid>
{0C743CE7-E49C-47F8-BC53-13929EA5CDA3}
</ProjectGuid>
<RootNamespace>
teststrutil
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
<ImportGroup
Label=
"ExtensionSettings"
>
</ImportGroup>
<ImportGroup
Label=
"Shared"
>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<PropertyGroup
Label=
"UserMacros"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"test_strutil.cpp"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
\ No newline at end of file
test/test_strutil/test_strutil.vcxproj.filters
0 → 100644
View file @
4350ca0d
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"4.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup>
<Filter
Include=
"Source Files"
>
<UniqueIdentifier>
{4FC737F1-C7A5-4376-A066-2A32D752A2FF}
</UniqueIdentifier>
<Extensions>
cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
</Extensions>
</Filter>
<Filter
Include=
"Header Files"
>
<UniqueIdentifier>
{93995380-89BD-4b04-88EB-625FBE52EBFB}
</UniqueIdentifier>
<Extensions>
h;hh;hpp;hxx;hm;inl;inc;ipp;xsd
</Extensions>
</Filter>
<Filter
Include=
"Resource Files"
>
<UniqueIdentifier>
{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
</UniqueIdentifier>
<Extensions>
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"test_strutil.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
test/test_strutil/test_strutil.vcxproj.user
0 → 100644
View file @
4350ca0d
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
/>
</Project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment