Hi,
I am using UE for a long time. Recently i have updated it to 24. After the update, it seems UE macro has problem with ^s and ^c. Below is my sample macro which is working pretty good on older versions and not working on the latest.
Sample for macro:
Use of macro:
If I select "Sample Name" and run the macro it has to convert selected "Sample Name" into "Name S." and replaces all the following occurrences also by "Name S.".
This macro just find the text in clipboard and replaces it with nothing, i.e. the ^s is not working as expected.
This is a small part of my macro and i submitting this for testing.
Am I missing anything?
I am using UE for a long time. Recently i have updated it to 24. After the update, it seems UE macro has problem with ^s and ^c. Below is my sample macro which is working pretty good on older versions and not working on the latest.
Code: Select all
InsertMode
ColumnModeOff
HexOff
IfSel
PerlReOn
Clipboard 4
Copy
Find RegExp SelectText "([a-z&;])([a-z&;']+) ([a-z&;])([a-z&;'\-]+)"
Replace All "\3\4 \1."
IfFound
Find MatchCase RegExp SelectText "([a-z])\."
IfFound
Find MatchCase RegExp SelectText "([a-z])\."
Replace All "\U\1\E."
EndIf
Clipboard 4
Find "^c"
Replace All "^s"
EndIf
ClearClipboard
Clipboard 0
EndIf
Code: Select all
Sample Name
Sample Name
Sample Name
Sample Name
If I select "Sample Name" and run the macro it has to convert selected "Sample Name" into "Name S." and replaces all the following occurrences also by "Name S.".
This macro just find the text in clipboard and replaces it with nothing, i.e. the ^s is not working as expected.
This is a small part of my macro and i submitting this for testing.
Am I missing anything?