Subversion Repositories eFlore/Applications.coel

Rev

Rev 619 | Rev 798 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 619 Rev 674
Line 9... Line 9...
9
	 *  @result ChaineDeCaractere
9
	 *  @result ChaineDeCaractere
10
	 */
10
	 */
Line 11... Line 11...
11
	
11
	
Line -... Line 12...
-
 
12
	public static String ucFirst(String inputStr)	{
-
 
13
		
-
 
14
		if (inputStr == null)	{
-
 
15
			return "";
12
	public static String ucFirst(String inputStr)	{
16
		}
13
		
17
		
14
		return inputStr.substring(0,1).toUpperCase() + inputStr.substring(1, inputStr.length());
18
		return inputStr.substring(0,1).toUpperCase() + inputStr.substring(1, inputStr.length());