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