From e4b140c55a35e1c9aa75f74e4b33d0b40ad2a066 Mon Sep 17 00:00:00 2001 From: "HuYingzhuo(hugo/hyzboy)" Date: Fri, 5 Aug 2022 12:21:59 +0800 Subject: [PATCH] added SplitStringTest.cpp --- SplitStringTest.cpp | 85 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/SplitStringTest.cpp b/SplitStringTest.cpp index e69de29..97b47fa 100644 --- a/SplitStringTest.cpp +++ b/SplitStringTest.cpp @@ -0,0 +1,85 @@ +#include +#include +#include + +using namespace hgl; +using namespace std; + +void Output(UTF8StringList &sl,const char *str) +{ + cout<\"\n")); + + Output(sl,"SplitToStringListByChars"); + } +}