RosettaCodeData/Task/Word-wrap/AutoHotkey/word-wrap.ahk

10 lines
354 B
AutoHotkey
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
MsgBox, % "72`n" WrapText(Clipboard, 72) "`n`n80`n" WrapText(Clipboard, 80)
2014-01-17 05:32:22 +00:00
return
WrapText(Text, LineLength) {
StringReplace, Text, Text, `r`n, %A_Space%, All
2015-02-20 00:35:01 -05:00
while (p := RegExMatch(Text, "(.{1," LineLength "})(\s|\R+|$)", Match, p ? p + StrLen(Match) : 1))
Result .= Match1 ((Match2 = A_Space || Match2 = A_Tab) ? "`n" : Match2)
2014-01-17 05:32:22 +00:00
return, Result
}