mirror of
https://github.com/boostorg/xpressive.git
synced 2025-05-11 13:23:56 +00:00
11 lines
168 B
C++
Executable File
11 lines
168 B
C++
Executable File
#include <boost/xpressive/xpressive.hpp>
|
|
|
|
int f()
|
|
{
|
|
using namespace boost::xpressive;
|
|
sregex srx = +_;
|
|
sregex drx = sregex::compile(".+");
|
|
|
|
return 0;
|
|
}
|