
	String.mask(mask: String): String
	
		Returns a string with the mask applied.
		
			mask mask that will be used
		
	



Observations
The mask replaces the ocurrences of "#" by the characters on the string, so if you need to use
the character "#" as part of the mask, just comment it out with "\\". Example: "\\#".
The mask is applied from the left to the right, if the string has less characters
than the mask, the "extra" characters of the mask will be ignored.
If the string has more characters than the mask, the remaining characters of the string
will be added to the end of the mask.