
How to trim extra space when selecting text?
How about his? Notepad Format/WordWrap must be set to off.
Code: Select all
filename:="words.txt"
delimiter:=";"
Send, ^c
Sleep, 200
word=%clipboard%
FileRead, OUT, %filename%
found:=0
Loop, Parse, OUT, `n, `r
{
if A_LoopField contains %word%%delimiter%
{
StringSplit, COL, A_LoopField, %delimiter%
if not COL2
{
Run notepad %filename%
WinWaitActive, ahk_class Notepad
Send, ^g%A_Index%{Enter}^+{Right}
}
else
Msgbox, 64,, % COL1 "`n`n" COL2
found:=1
break
}
}
if not found
{
FileAppend, `n%word%%delimiter%, %filename%, UTF-8
Run notepad %filename%
WinWaitActive, ahk_class Notepad
Send, ^{End}
}
return