diff options
author | Eike Rathke <erack@redhat.com> | 2018-11-29 01:11:57 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-11-29 11:30:40 +0100 |
commit | e3af4947fd4b8d1411212775e8ffe42e330364c3 (patch) | |
tree | 333ad617d667a272d6fcd6f1360fac716a575a5a /cui/uiconfig | |
parent | 00df4a5ae395607eab1f83aacfc1fb05eb93ecc9 (diff) |
Support occurrence number as REGEX() 4th argument, tdf#113977 follow-up
REGEX( Text ; Expression [ ; [ Replacement ] [ ; Flags|Occurrence ] ] )
REGEX(Text;Expression) extracts the first match of Expression in
Text. If there is no match, #N/A is returned.
REGEX(Text;Expression;Replacement) replaces the first match of
Expression in Text, not extracted. If there is no match, Text is
returned unmodified.
REGEX(Text;Expression;Replacement;"g") replaces all matches of
Expression in Text with Replacement, not extracted. If there is no
match, Text is returned unmodified.
REGEX(Text;Expression;;Occurrence) extracts the n-th match of
Expression in Text. If there is no n-th match, #N/A is returned.
If Occurrence is 0, Text is returned unmodified.
REGEX(Text;Expression;Replacement;Occurrence) replaces the n-th
match of Expression in Text with Replacement, not extracted. If
there is no n-th match, Text is returned unmodified. If Occurrence
is 0, Text is returned unmodified.
Change-Id: Iadb705e4c76415c57bf510489410ec029344cca7
Reviewed-on: https://gerrit.libreoffice.org/64199
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'cui/uiconfig')
0 files changed, 0 insertions, 0 deletions