FLEX The length property
Every string has a length property, which is equal to the number of characters in the string:
var str:String = "Adobe";
trace(str.length); // output: 5
An empty string and a null string both have a length of 0, as the following example shows:
var str1:String = new String();
trace(str1.length); // output: 0
str2:String = '';
trace(str2.length); // output: 0
11:06 AM
 | 
Labels:
Flex Action Script 3.0,
Flex Samples
 | 
 
				 This entry was posted on 11:06 AM
	and is filed under          
Flex Action Script 3.0
,
Flex Samples
						.
							
				You can follow any responses to this entry through 
				the RSS 2.0 feed. 
				
				
					You can leave a response,
		        
				or trackback from your own site.
			
Subscribe to:
Post Comments (Atom)


0 comments:
Post a Comment