PregReplace: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 2: | Line 2: | ||
{{Server client function}} | {{Server client function}} | ||
{{New feature/item|4.014|1.4|5106| | {{New feature/item|4.014|1.4|5106| | ||
This function replace | This function performs a regular expression search and replace on an input string and returns the replaced string. | ||
}} | }} | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string pregReplace ( string | string pregReplace ( string subject, string pattern, string replacement ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
*''' | *'''subject:''' The input [[string]]. | ||
*'''pattern:''' The pattern for | *'''pattern:''' The pattern [[string]] to search for in the input [[string]]. | ||
*''' | *'''replacement:''' The replacement [[string]] to replace all matches within the input [[string]]. | ||
===Returns=== | ===Returns=== | ||
Returns | Returns the replaced ''[[string]]'', or [[bool]] ''false'' otherwise. | ||
==Example== | ==Example== | ||
Line 24: | Line 24: | ||
addCommandHandler( 'examples', | addCommandHandler( 'examples', | ||
function( ) | function( ) | ||
-- Replace doh | -- Replace doh with done | ||
outputDebugString( pregReplace( 'I doh this, guys.', 'doh', 'done' ) or 'not replaced' ) -- I done this, guys | outputDebugString( pregReplace( 'I doh this, guys.', 'doh', 'done' ) or 'not replaced' ) -- Result: I done this, guys | ||
-- | -- Remove all uppercase alphabetic characters | ||
outputDebugString( pregReplace( 'AaaBbbZzz', '[A-Z]{1,}', '' ) or 'not replaced' ) -- aabbzz | outputDebugString( pregReplace( 'AaaBbbZzz', '[A-Z]{1,}', '' ) or 'not replaced' ) -- Result: aabbzz | ||
end | end | ||
) | ) |
Revision as of 11:04, 6 June 2013
Syntax
string pregReplace ( string subject, string pattern, string replacement )
Required Arguments
- subject: The input string.
- pattern: The pattern string to search for in the input string.
- replacement: The replacement string to replace all matches within the input string.
Returns
Returns the replaced string, or bool false otherwise.
Example
Click to collapse [-]
Shared ( client and server )Some examples:
addCommandHandler( 'examples', function( ) -- Replace doh with done outputDebugString( pregReplace( 'I doh this, guys.', 'doh', 'done' ) or 'not replaced' ) -- Result: I done this, guys -- Remove all uppercase alphabetic characters outputDebugString( pregReplace( 'AaaBbbZzz', '[A-Z]{1,}', '' ) or 'not replaced' ) -- Result: aabbzz end )
Requirements
This template will be deleted.
See Also
- addDebugHook
- base64Decode
- base64Encode
- debugSleep
- decodeString
- encodeString
- fromJSON
- generateKeyPair
- getColorFromString
- getDevelopmentMode
- getDistanceBetweenPoints2D
- getDistanceBetweenPoints3D
- getEasingValue
- getNetworkStats
- getNetworkUsageData
- getPerformanceStats
- getRealTime
- getTickCount
- getTimerDetails
- getTimers
- getFPSLimit
- getUserdataType
- getVersion
- gettok
- isTransferBoxVisible
- setTransferBoxVisible
- hash
- inspect
- interpolateBetween
- iprint
- isOOPEnabled
- isTimer
- killTimer
- md5
- passwordHash
- passwordVerify
- pregFind
- pregMatch
- pregReplace
- removeDebugHook
- resetTimer
- setDevelopmentMode
- setFPSLimit
- setTimer
- ref
- deref
- sha256
- split
- teaDecode
- teaEncode
- toJSON
- tocolor
- getProcessMemoryStats
- utfChar
- utfCode
- utfLen
- utfSeek
- utfSub
- bitAnd
- bitNot
- bitOr
- bitXor
- bitTest
- bitLRotate
- bitRRotate
- bitLShift
- bitRShift
- bitArShift
- bitExtract
- bitReplace