问题
Try running the following code yourself, and you would notice that "can't" changes to "CAN't", but I want it to change it to "CAN NOT". On the other hand, I want to keep the 1.st line of code, which changes "can" to "CAN". How could I achieve this(?)
::can::CAN
::can't::CAN NOT
回答1:
You must remove '
from defaults ending characters
#Hotstring EndChars -()[]{}:;"/\,.?!`n `t
::can::CAN
::can't::CAN NOT
来源:https://stackoverflow.com/questions/56533561/collision-with-two-lines-of-code-make-code-does-not-work-the-way-it-is-meant-by