Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
UppHub
Status & Roadmap
FAQ
Authors & License
Forums
Funding U++
Search on this site











SourceForge.net Logo

SourceForge.net Logo

GitHub Logo

Discord Logo

RegExp

 

PCRE regular expressions

 

one

two

three

------------------------------

hello

4

ho

55

uuu

iii

pp

99

baby

too

swistak

 

 

 

RegExp.cpp

 

#include <plugin/pcre/Pcre.h>

 

using namespace Upp;

 

CONSOLE_APP_MAIN

{

    RegExp r0("(\\w+)\\s(\\w+)\\s(\\w+)");

    if(r0.Match("one two three"))

    {

        for(int i = 0; i < r0.GetCount(); i++)

            Cout() << r0[i] << '\n';

        Cout() << "---\n";

   } else if(r0.IsError())

        Cout() << r0.GetError() << '\n';

 

    Cout() << "------------------------------\n";

 

    RegExp r1("(\\w+)", RegExp::UNICODE);

    int i = 0;

    while(r1.GlobalMatch("hello 4 ho 55 uuu iii pp 99 baby too swistak"))

    {

        for(int i = 0; i < r1.GetCount(); i++)

            Cout() << r1[i] << '\n';

   }

    if(r1.IsError())

        Cout() << r1.GetError() << '\n';

}

 

 

 

 

Do you want to contribute?