Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

replacement pattern in ippsRegExpReplaceInit

evanyan
Beginner
278 Views
Hi,

I'm curious what kinds of replacement patterns IPP supports in ippsRegExpReplaceInit.

The only supported case I found besides raw string is as follows.

regex: ([AB])([CD])
src string: AC
replacement: $2$1
dist string: CA

Is there any other kinds of supported patterns? / What are the exact usages of replacement pattern?

Thanks,
-Evan
0 Kudos
2 Replies
Igor_B_Intel1
Employee
278 Views
Hi,

IPP function perform matching and replacement operations with the Perl-compatible regular expression patterns. For the replacementit is:1. Simple text replacemet and2. Using of n-th matched subpattern ($1, 2,...) in any combination.

Igor S. Belyakov

0 Kudos
Naveen_G_Intel
Employee
278 Views

Nice information about Perl-compatible regular expressions - http://search.cpan.org/dist/perl/pod/perlre.pod

Regards,
Naveen Gv

0 Kudos
Reply