/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
	
		String str = "#114.034407,E,22.648272,N,0.00,0.00#010104#004500#114.03440‌​7,E,22.648272,N,0.00‌​,0.00#010104#004500";
		String delimiters = "(?=#\\d{1,3}\\.)";
		
		// analyzing the string 
		String[] tokensVal = str.split(delimiters);
		
		// prints the number of tokens
		System.out.println("Count of tokens = " + tokensVal.length);
		
		for(String token : tokensVal) {
			System.out.println(token);
		} 
	}
}