Skip to content

Instantly share code, notes, and snippets.

View zheng-yu-yang's full-sized avatar

zheng-yu-yang

View GitHub Profile
@zheng-yu-yang
zheng-yu-yang / regex_test.cpp
Last active August 3, 2023 01:36
std::regex_replace test case
#include <stdio.h>
#include <locale>
#include <codecvt>
#include <regex>
int main()
{
// to remove leading or trailing spaces in a wstring
static std::wregex spaceRegex(L"^\\s*|\\s*$");