PregFind

From Multi Theft Auto: Wiki
Revision as of 12:28, 25 February 2013 by Kenix1 (talk | contribs)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.4 r5106:

This function find only one match and when match is founded stop working and return a result.

Syntax

bool pregFind ( string base, string pattern )

Required Arguments

  • base: The base string for find match.
  • pattern: The pattern for find in base string.

Returns

Returns an bool if the function was successful found one match, false otherwise.


Example

Click to collapse [-]
Shared ( client and server )

Some examples:

addCommandHandler( 'examples',
	function( )
                -- hello word find
		outputDebugString( pregFind( 'hello world, hello world, hello world', 'hello world' ) and 'found' or 'not found' ) -- found 
                -- integer number find
                outputDebugString( pregFind( '123', '^-{0,1}\\d+$' ) and 'found' or 'not found' ) -- found
                -- Login with a-z and A-Z symbols and have more 3 symbols
                outputDebugString( pregFind( 'Kenix', '[a-zA-Z]{3,}' ) and 'found' or 'not found' ) -- found
                -- Russian hello ( привет ) find
                outputDebugString( pregFind( 'привет привет', 'привет' ) and 'found' or 'not found' ) -- found
                -- Sequence of numbers
                outputDebugString( pregFind( '5, 10', '^([1-9]{1}[0-9]{0,})+(((,\s|,)[1-9]{1}[0-9]{0,}){0,1}){1,1}' ) and 'found' or 'not found' ) -- found
	end
)

See Also