SAP REGEX MIGRATING POSIX
Get Example source ABAP code based on a different SAP table
VERSION 5 IN
ABAP_REGEX - Migrating from POSIX to PCRE
The ABAP Kernel of an
Regular expressions in
The following table provides a general troubleshooting for migrating from POSIX to PCRE:
The PCRE library rejects the pattern (e.g. by giving a compiler error or raising an exception)Make sure to not use any features that are supported by POSIX but not by PCRE. Also pay close attention to the error message, which often contains useful information.
The pattern does not match what it should after migrating to PCREMake sure that you have taken PCRE's extended mode into account by either explicitly encoding whitespaces or by disabling extended mode. Ensure that you have set the correct Unicode handling for your context.
The following topics provide detailed assistance for the migration from POSIX to PCRE.