I like to delimit the string as follow
Given the following String :
Column 1
10.80.111.199.1345
127.0.0.1.3279
I will like to delimit numbers after the last ".", which will get the follow output
Column 1 Column 2
10.1.12.5 1345
127.0.0.1 3279
I know excel has the delimitor function which allows me to delimit with specific symbol or through the fixed width. It does not seems to work for fixed width.
Is there any alternatives, rather than delimited with "." can concating back the strings on Column 1?