diff options
Diffstat (limited to 'source/text/swriter/librelogo/LibreLogo.xhp')
-rw-r--r-- | source/text/swriter/librelogo/LibreLogo.xhp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/text/swriter/librelogo/LibreLogo.xhp b/source/text/swriter/librelogo/LibreLogo.xhp index a95d803159..5cf35de229 100644 --- a/source/text/swriter/librelogo/LibreLogo.xhp +++ b/source/text/swriter/librelogo/LibreLogo.xhp @@ -328,7 +328,7 @@ <paragraph role="logocode" xml-lang="en-US" id="par_2600"> PRINT SUB (“t”, “T”, “text”) ; print “Text”, replacing “t” with “T”<br/> PRINT SUB (“(.)”, “\\1\\1”, “text”) ; print “tteexxtt”, doubling every characters<br/></paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_2610">SEARCH</paragraph> <paragraph role="paragraph" xml-lang="en-US" id="par_2620">Search character sequences patterns using regex patterns.</paragraph> -<paragraph role="logocode" xml-lang="en-US" id="par_2630"> IF SEARCH (“\w”, word) [ PRINT “Letter in the word.” ]<br/></paragraph> +<paragraph role="logocode" xml-lang="en-US" id="par_2630"> IF SEARCH (“\w”, "word") [ PRINT “Letter in the word.” ]<br/></paragraph> <paragraph role="heading" level="3" xml-lang="en-US" id="hd_2640">FINDALL</paragraph> <paragraph role="paragraph" xml-lang="en-US" id="par_2650">Find all character sequences in the input string matching the given regex pattern.</paragraph> <paragraph role="logocode" xml-lang="en-US" id="par_2660"> PRINT FINDALL(“\w+”, “Dogs, cats.”) ; print [“Dogs”, “cats”], the list of the words.<br/></paragraph> |