Posts

Showing posts from September, 2015

Regex: add to the end of a line

Find:  (.)$   Replace:  \1\\n"

Excel. Trim last, specific character from cell

Quick one, Excel, trim the last specific character from a cell =IF(RIGHT(A114,1)="*",LEFT(A114,(LEN(A114)-1)),A114) That is all