PregMatch

From Multi Theft Auto: Wiki
Revision as of 07:47, 11 January 2014 by Tren GT (talk | contribs)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.3.5 :

This function returns all matches.

Syntax

table pregMatch ( string base, string pattern )

Required Arguments

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

Returns

Returns an table if one match founded and more, false otherwise.

Example

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

Some examples:

addCommandHandler( 'examples',
	function( )
                --[[
                Will print:
                Match: 1, hello
                Match: 2, hello
                ]] 
                for i, v in ipairs( pregMatch( 'hello hello', '(hello)'  ) ) do
	            outputDebugString( 'Match: ' .. i .. ', ' .. v )
                end
	end
)

Requirements

Minimum server version 1.3.5-9.06056
Minimum client version 1.3.5-9.06056

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.3.5-9.06056" client="1.3.5-9.06056" />

See Also