Помощ за LibreOfficeDev 26.2
Regular expressions are special patterns used to find and manipulate text, helping you locate specific information within texts.
Търсенето с регулярни изрази се различава от търсенето със заместващи знаци. LibreOfficeDev Writer поддържа само търсене с регулярни изрази.
Когато търсите и заменяте текст в документ, можете да ползвате регулярни изрази. Например, "с.н" ще съвпадне както със "син", така и със "сан".
Изберете
.Щракнете върху
, за да разширите диалога.Отметнете полето
.В полето
въведете търсения текст и желания регулярен израз или изрази.Натиснете бутона
или .Регулярният израз за единичен знак е точка (.).
The regular expression for a word character \w, and \d for a decimal digit.
Регулярният израз за нула или повече срещания на предишния знак е звездичка. Например: "123*" съвпада с "12", "123" и "1233".
The regular expression to search for zero or more occurrences of any character is a period and asterisk (.*).
The regular expression for one or more occurrences of the previous character is a plus sign (+). For example: "\w+" finds any word, "\d+" any number.
The regular expression for a tab character is \t. More generally, \s stands for all kinds of "spaces", like non-breaking space, carriage return ...
The regular expression for the end of a paragraph is a dollar sign ($). The regular expression for the start of a paragraph is a caret and a period (^.). The regular expression for an empty paragraph is ^$.
A search using a regular expression will work only within one paragraph. That is, a \n will match a line break within a paragraph.