summaryrefslogtreecommitdiff
path: root/source/en-GB/helpcontent2/source/text/scalc/01.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/en-GB/helpcontent2/source/text/scalc/01.po')
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po116
1 files changed, 114 insertions, 2 deletions
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index edd1837a551..160019a421f 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-11-12 12:22+0100\n"
+"POT-Creation-Date: 2018-11-16 22:41+0100\n"
"PO-Revision-Date: 2018-11-13 09:11+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542100278.000000\n"
#: 01120000.xhp
@@ -55120,6 +55120,118 @@ msgctxt ""
msgid "<item type=\"literal\">RAWSUBTRACT(0.987654321098765)</item> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
msgstr "<item type=\"literal\">RAWSUBTRACT(0.987654321098765)</item> returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers."
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"tit\n"
+"help.text"
+msgid "REGEX Function"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"bm_id831542233029549\n"
+"help.text"
+msgid "<bookmark_value>REGEX function</bookmark_value> <bookmark_value>regular expressions;extracting in spreadsheets</bookmark_value> <bookmark_value>regular expressions;REGEX function</bookmark_value>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"hd_id961542230672100\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/func_regex.xhp\" name=\"function REGEX\">REGEX</link>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id541542230672101\n"
+"help.text"
+msgid "<variable id=\"func_regex_desc\"><ahelp hid=\".\">Matches and extracts or optionally replaces text using regular expressions.</ahelp></variable>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id701542231253817\n"
+"help.text"
+msgid "REGEX( Text ; Expression [ ; [ Replacement ] [ ; Flags ] ] )"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id621542232197446\n"
+"help.text"
+msgid "<emph>Text</emph>: A text or reference to a cell where the regular expression is to be applied."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id211542232209275\n"
+"help.text"
+msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"https://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">ICU regular expressions</link>. If there is no match, #N/A is returned."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id581542232755604\n"
+"help.text"
+msgid "<emph>Replacement</emph>: Optional. The replacement text and references to capture groups. If there is no match, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id421542232246840\n"
+"help.text"
+msgid "<emph>Flags</emph>: Optional. \"g\" replaces all matches of <emph>Expression</emph> in <emph>Text</emph>, not extracted. If there is no match, <emph>Text</emph> is returned unmodified."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id371542291684176\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\")</item> returns \"Z23456ABCDEF\", where the first match of a digit is replaced by \"Z\"."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id891542291697194\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[:digit:]\";\"Z\";\"g\")</item> returns \"ZZZZZZABCDEF\", where all digits were replaced by \"Z\"."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id21542291705695\n"
+"help.text"
+msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[1|2|6]\";\"\";\"g\")</item> returns \"345ABCDEF\", where any occurrence of \"1\", \"2\" or \"6\" is replaced by the empty string, thus deleted."
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id711542233602553\n"
+"help.text"
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"regex lists\">List of regular expressions</link>"
+msgstr ""
+
+#: func_regex.xhp
+msgctxt ""
+"func_regex.xhp\n"
+"par_id431542233650614\n"
+"help.text"
+msgid "<link href=\"https://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">ICU regular expressions</link>"
+msgstr ""
+
#: func_roundsig.xhp
msgctxt ""
"func_roundsig.xhp\n"