From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/posix-regexps.html | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 devdocs/elisp/posix-regexps.html (limited to 'devdocs/elisp/posix-regexps.html') diff --git a/devdocs/elisp/posix-regexps.html b/devdocs/elisp/posix-regexps.html deleted file mode 100644 index 989beca6..00000000 --- a/devdocs/elisp/posix-regexps.html +++ /dev/null @@ -1,14 +0,0 @@ -

POSIX Regular Expression Searching

The usual regular expression functions do backtracking when necessary to handle the ‘\|’ and repetition constructs, but they continue this only until they find some match. Then they succeed and report the first match found.

This section describes alternative search functions which perform the full backtracking specified by the POSIX standard for regular expression matching. They continue backtracking until they have tried all possibilities and found all matches, so they can report the longest match, as required by POSIX. This is much slower, so use these functions only when you really need the longest match.

The POSIX search and match functions do not properly support the non-greedy repetition operators (see non-greedy). This is because POSIX backtracking conflicts with the semantics of non-greedy repetition.

Command: posix-search-forward regexp &optional limit noerror count -

This is like re-search-forward except that it performs the full backtracking specified by the POSIX standard for regular expression matching.

-
Command: posix-search-backward regexp &optional limit noerror count -

This is like re-search-backward except that it performs the full backtracking specified by the POSIX standard for regular expression matching.

-
Function: posix-looking-at regexp -

This is like looking-at except that it performs the full backtracking specified by the POSIX standard for regular expression matching.

-
Function: posix-string-match regexp string &optional start -

This is like string-match except that it performs the full backtracking specified by the POSIX standard for regular expression matching.

-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/POSIX-Regexps.html -

-
-- cgit v1.2.3