Answers for "string.length"

C++
22

javascript string lentrh

var myString = "string test";
var stringLength = myString.length;

console.log(stringLength); // Will return 11 because myString 
// 							  is 11 characters long...
Posted by: Guest on March-15-2020
0

how to check how many strings are in a sentence javascript

function WordCounter (str) {
	var words = str.split(" ").length;
	return words;
}
// this should work!
Posted by: Guest on June-02-2020
0

javascript string length

const s = 'Hello, World!';
console.log(s.length);
Posted by: Guest on February-03-2021
0

How to get length of string in javascript without using native length method

var str = userInput[0];
  var count = 0;
  while(str[count] !== undefined)
  {
      count += 1;
  }
  console.log(count)
Posted by: Guest on December-12-2020
0

String Length

//Methods used to obtain information about an object are known as accessor methods. One accessor method that you can use with strings is the length() method, which returns the number of characters contained in the string object. 

Example
public class StringDemo {

   public static void main(String args[]) {
      String palindrome = "Dot saw I was Tod";
      int len = palindrome.length(); // Using the length method
      System.out.println( "String Length is : " + len );
   }
}
Posted by: Guest on August-31-2021
0

string lenghth

// strip tags to avoid breaking any html
$string = strip_tags($string);
if (strlen($string) > 500) {

    // truncate string
    $stringCut = substr($string, 0, 500);
    $endPoint = strrpos($stringCut, ' ');

    //if the string doesn't contain any space then it will cut without word basis.
    $string = $endPoint? substr($stringCut, 0, $endPoint) : substr($stringCut, 0);
    $string .= '... <a href="/this/story">Read More</a>';
}
echo $string;
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language