|
|
![]() |
| Thread Tools | Search this Thread |
#1
| |||
| |||
Get String Length with Javascript I am writing JavaScripts and i need to know what strings are and how they work. I have tried to create a code to find the length of a string with str.length() function but gives error. Can any one tell me how to find the length of a string in JavaScripts. |
#2
| |||
| |||
Re: Get String Length with Javascript Code: <script type="text/javascript"> var myString = "12345678"; var length = mstr.length; document.write("The string length : " + length); document.write("<br />The string is this long: " + myString.length); </script> Code: The string is this long: 8 The string is this long: 8 |
#3
| |||
| |||
Re: Get String Length with Javascript Javascript string length : The following example uses the length property of the String object to find the length of a string:var txt="string"; document.write(text1.length); The code above will result in the following output:6 The following example uses the toUpperCase() method of the String object to convert a string to uppercase letters:var txt="string";document.write(txt.toUpperCase()); The code above will result in the following output:string |
#4
| |||
| |||
Re: Get String Length with Javascript Strings are simply groups of characters, like 'JavaScript', 'string', Code: <script language="javascript" type="text/javascript"> var len=" length of chracter"; alert(len.length); </script> |
![]() |
|
Tags: function, javascripts, length, string |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Coversion of Cast string as int in Javascript | LaMarcus | Software Development | 5 | 14-10-2010 03:59 AM |
Finding php string length | afidelino | Software Development | 5 | 26-02-2010 07:34 PM |
Find and Replace in JavaScript String | Wilbur | Software Development | 5 | 15-12-2009 02:23 PM |
Trim a String in JavaScript | Kingfisher | Software Development | 3 | 21-11-2009 10:32 AM |
Length of a string displayable in C | Berlin Baby | Software Development | 3 | 10-01-2009 07:06 PM |