I need to process a random string which has the character ".." in-between. Like the one shown below
a..b/c..de/f-g..xyz..abc..def..123..
How can I get the data between these ".." using regexp?( this string can be of any length and I need to get each intermediate data set for further processing). Please guide me with this.
Thanks!