Hi,
I want to apply tag for the selected text and I am using the below macro for that.
All I need is if the selected text contains [,\. :] in the end then the characters has to be skipped.
For example,
sample Text - <tag>sample Text</tag>
sample Text. 123- <tag>sample Text. 123</tag>
sample Text. - <tag>sample Text</tag>.
sample, Text, - <tag>sample, Text</tag>,
Please Advice
I want to apply tag for the selected text and I am using the below macro for that.
Code: Select all
Find "^s"
Replace "<tag>^s</tag>"
For example,
sample Text - <tag>sample Text</tag>
sample Text. 123- <tag>sample Text. 123</tag>
sample Text. - <tag>sample Text</tag>.
sample, Text, - <tag>sample, Text</tag>,
Please Advice