
/*
	A function to extract the identifier from a string
	Example: my_div_321 where '321' is the identifier
	
	The identifier MUST be last and MUST have the underscore before itself
*/
function getIdentifier(str){
	return str.substring(str.lastIndexOf('_') + 1);
}
