Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两千行文字。我需要将每一行都用引号括起来,例如“example”。
前
line 1 line 2 line 3
后
"line 1" "line 2" "line 3"
我怎么能用 AutoHotkey 来解决这个问题?
像这样?
text= ( bla bla bla blah blah blah blah blablah blablah blablah ) MsgBox % RegExReplace(RegExReplace(text,"`am)^.","""$0"),"`am).$","$0""")