Regular expressions: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
(+ AutoHotkey)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 69:
=={{header|AutoHotkey}}==
<lang AutoHotkey>
msgboxMsgBox % FoundPosfoundpos := RegExMatch("Hello World", "World$")
msgboxMsgBox % replaced := RegExReplace("Hello World", "World$", "yourself")
</lang>