I have a column of minutes/seconds stamps, but without a colon, ie. 1245 [as 12:45] or 4555 [as 45: 55]. Is there a shortcut method of inserting the colon between the 2nd and 3rd digits?
You could do that with a fairly simple wildcard Find/Replace, where:
Find = <([0-9]{1,2})([0-9]{2})>
Replace = \1:\2
If you have other 3-4 digit numbers (e.g. years, numbers with thousands separators), I recommend not using ReplaceAll.
You could do that with a fairly simple wildcard Find/Replace, where:
Find = <([0-9]{1,2})([0-9]{2})>
Replace = \1:\2
If you have other 3-4 digit numbers (e.g. years, numbers with thousands separators), I recommend not using ReplaceAll.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.