[Toc]
BOLD
Italic
underline
`code
deleted
ctrl+/
==highlight==
power^2^
-
unorder
- list
- first
- second
-
todo
-
list
#include <iostream>
#include <sstream>
#include <utility>
#include <vector>
#include <tuple>
#include <bitset>
#include <regex>
std::vector<int> a;
int main()
{
std::regex rx("\\w*\\.(cpp|cc|cxx)", std::regex::icase);
std::smatch results;
std::string test_str("dsagdas23123.cpp\n32123.Cpp\n423cdf.Cc\n dasd.txt\n213asdf\nasd.ad");
/*if (std::regex_search(test_str, results, rx))
std::cout << results.str();*/
for (std::sregex_iterator it(test_str.begin(), test_str.end(), rx), end;
it != end; ++it)
std::cout << it->str() << std::endl;
}
Monday | Tuesday | Wednesday | Thursday | Friday |
---|---|---|---|---|
pie
title 这是一个饼
"绿豆饼" :12
"红豆饼" :88
"黑豆饼" :144
graph LR
A
0(B)
1((C))
2{{D}}
3[[E]]
4[(F)]
0-->1--Text-->0-.->|Lext|2
3===4---1
flowchart LR
0(B\nB)
1((C))
2{{D}}
3[[E]]
4[(F)]
0 o--------o 1
0 <---> 2
2 x--x 3
4-->1
Footnotes
-
from this ↩