From 2dc41deeafdf5dc8a28c0ec0682a0574148e05cf Mon Sep 17 00:00:00 2001 From: Peter Date: Fri, 15 Jul 2022 13:40:53 +0100 Subject: Remove HTTP(S) prefixes --- ahk-assistant.ahk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index da08a6a..ac075e3 100644 --- a/ahk-assistant.ahk +++ b/ahk-assistant.ahk @@ -639,6 +639,8 @@ pasteClipboard() { StringReplace, tempClipboard, tempClipboard, +44,0, All ; remove international dialling code without a space StringReplace, tempClipboard, tempClipboard, `r,, All ; remove half of line breaks StringReplace, tempClipboard, tempClipboard, `n,, All ; remove other half of line breaks + StringReplace, tempClipboard, tempClipboard, https:,, All ; remove other half of line breaks + StringReplace, tempClipboard, tempClipboard, http:,, All ; remove other half of line breaks tempClipboard = %tempClipboard% ; trim whitespace SendRaw %tempClipboard% tempClipboard = -- cgit v1.2.3