docs » cp.text.matcher
Adapted from 'utf8.lua' (https://github.com/Stepets/utf8.lua)
Copyright (c) 2006-2007, Kyle Smith All rights reserved.
Contributors: Alimov Stepan David Peterson
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- Constructors - API calls which return an object, typically one that offers API methods
- matcher
- Methods - API calls which can only be made on an object returned by a constructor
- find
- gmatch
- gsub
- match
Signature | cp.text.matcher(pattern[, plain]) -> cp.text.matcher |
---|---|
Type | Constructor |
Description | Returns a matcher for the specified pattern. This follows the conventions of the standard LUA Patterns API. This will return a reusable, compiled parser for the given pattern. |
Parameters |
|
Returns |
|
Signature | cp.text.matcher:find(value[, start]) -> number, number, ... |
---|---|
Type | Method |
Description | Processes the text, returning the start position, the end position, followed by any capture group values. |
Parameters |
|
Returns |
|
Signature | cp.text.matcher:gmatch(value) -> function |
---|---|
Type | Method |
Description | Returns an iterator function that, each time it is called, returns the next captures from pattern over string s. If pattern specifies no captures, then the whole match is produced in each call. |
Parameters |
|
Returns |
|
Signature | cp.text.matcher:gsub(value, repl, limit) -> text, number |
---|---|
Type | Method |
Description | Returns a copy of value in which all (or the first n , if given) occurrences of the pattern have been replaced by a replacement string specified by repl , which can be text, a string, a table, or a function. gsub also returns, as its second value, the total number of matches that occurred. |
Parameters |
|
Returns |
|
Notes |
|
Signature | cp.text.matcher:match(value[, start]) -> ... |
---|---|
Type | Method |
Description | Looks for the first match of the pattern in the string value . If it finds one, then match returns the captures from the pattern; otherwise it returns nil . If pattern specifies no captures, then the whole match is returned. A third, optional numerical argument init specifies where to start the search; its default value is 1 and can be negative. |
Parameters |
|
Returns |
|