“tronquer une chaîne js” Réponses codées

JavaScript tronquer la chaîne

var string = "ABCDEFG";
var truncString = string.substring(0, 3); //Only keep the first 3 characters
console.log(truncString); //output: "ABC"
TC5550

Comment tronquer la chaîne en javascript

function truncateString(str, num) {
  if (str.length > num) {
    return str.slice(0, num) + "...";
  } else {
    return str;
  }
}
Important Impala

tronquer la chaîne en javascript

_.truncate('hi-diddly-ho there, neighborino');
// => 'hi-diddly-ho there, neighbo...' 

_.truncate('hi-diddly-ho there, neighborino', {  'length': 24,  'separator': ' '});
// => 'hi-diddly-ho there,...' 

_.truncate('hi-diddly-ho there, neighborino', {  'length': 24,  'separator': /,? +/});
// => 'hi-diddly-ho there...' 

_.truncate('hi-diddly-ho there, neighborino', {  'omission': ' [...]'});
// => 'hi-diddly-ho there, neig [...]'
Light Ladybird

Tronquer une chaîne en utilisant javascript

var length = 3;
var myString = "ABCDEFG";
var myTruncatedString = myString.substring(0,length);
// The value of myTruncatedString is "ABC"
Light Ladybird

tronquer une chaîne js

var length = 3;
var myString = "ABCDEFG";
var myTruncatedString = myString.substring(0,length);
// The value of myTruncatedString is "ABC"
Laith Alayassa

Réponses similaires à “tronquer une chaîne js”

Questions similaires à “tronquer une chaîne js”

Plus de réponses similaires à “tronquer une chaîne js” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code