regexReplace: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(description)
m (added missing ;)
Line 17: Line 17:
|p3= replaceString: [[String]] - [https://www.boost.org/doc/libs/1_76_0/libs/regex/doc/html/boost_regex/format/perl_format.html Reference]
|p3= replaceString: [[String]] - [https://www.boost.org/doc/libs/1_76_0/libs/regex/doc/html/boost_regex/format/perl_format.html Reference]


|x1= <code>"wookie boOkie cookie" [[{{PAGENAMEE}}]] [".oo/gio", "[$']"] {{cc|"[kie boOkie cookie]kie [kie cookie]kie [kie]kie"}}</code>
|x1= <code>"wookie boOkie cookie" [[{{PAGENAMEE}}]] [".oo/gio", "[$']"]; {{cc|"[kie boOkie cookie]kie [kie cookie]kie [kie]kie"}}</code>


|x2= <code>"wookie boOkie cookie" [[{{PAGENAMEE}}]] [".oo/gio", "[$&]"] {{cc|"[woo]kie [boO]kie [coo]kie"}}</code>
|x2= <code>"wookie boOkie cookie" [[{{PAGENAMEE}}]] [".oo/gio", "[$&]"]; {{cc|"[woo]kie [boO]kie [coo]kie"}}</code>


|x3= <code>"wook1e boOk2e cook3e" [[{{PAGENAMEE}}]] [".oo/gio", "[$`]"] {{cc|"[]kie [k1e ]k2e [k2e ]k3e"}}</code>
|x3= <code>"wook1e boOk2e cook3e" [[{{PAGENAMEE}}]] [".oo/gio", "[$`]"]; {{cc|"[]kie [k1e ]k2e [k2e ]k3e"}}</code>


|x4= <code>"wook1e boOk2e cook3e" [[{{PAGENAMEE}}]] [".(oo)(.*?)e", "[$2]"] {{cc|"[k1] [k2] [k3]"}}</code>
|x4= <code>"wook1e boOk2e cook3e" [[{{PAGENAMEE}}]] [".(oo)(.*?)e", "[$2]"]; {{cc|"[k1] [k2] [k3]"}}</code>


|x5= <code>"wOokie boOkie cookie" [[{{PAGENAMEE}}]] [".(?<test>oo)kie/gio", "[$+{test}]"] {{cc|"[oo] [oO] [oo]"}}</code>
|x5= <code>"wOokie boOkie cookie" [[{{PAGENAMEE}}]] [".(?<test>oo)kie/gio", "[$+{test}]"]; {{cc|"[oo] [oO] [oo]"}}</code>


|seealso= [[regexMatch]] [[regexFind]]
|seealso= [[regexMatch]] [[regexFind]]
}}
}}

Revision as of 11:38, 6 May 2021

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version 2.05|2.05]]
Hover & click on the images for description

Description

Description:
Searches given haystack with given pattern and replaces all matches with given replaceString.
Groups:
Regular Expression (Regex)

Syntax

Syntax:
haystack regexReplace [pattern, replace string]
Parameters:
haystack: String
pattern: String - Format regex pattern
replaceString: String - Reference
Return Value:
Return value needed

Examples

Example 1:
"wookie boOkie cookie" regexReplace [".oo/gio", "[$']"]; // "[kie boOkie cookie]kie [kie cookie]kie [kie]kie"
Example 2:
"wookie boOkie cookie" regexReplace [".oo/gio", "[$&]"]; // "[woo]kie [boO]kie [coo]kie"
Example 3:
"wook1e boOk2e cook3e" regexReplace [".oo/gio", "[$`]"]; // "[]kie [k1e ]k2e [k2e ]k3e"
Example 4:
"wook1e boOk2e cook3e" regexReplace [".(oo)(.*?)e", "[$2]"]; // "[k1] [k2] [k3]"
Example 5:
"wOokie boOkie cookie" regexReplace [".(?<test>oo)kie/gio", "[$+{test}]"]; // "[oo] [oO] [oo]"

Additional Information

See also:
regexMatch regexFind

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

[[Category:Introduced with arma3dev version 2.05]][[ Category: arma3dev: New Scripting Commands | REGEXREPLACE]][[ Category: arma3dev: Scripting Commands | REGEXREPLACE]]