“String String in JavaScript” Code-Antworten

So erstellen Sie eine kürzere String -JavaScript

const string = "Name".slice(0, 250).concat('...');
const string2 = "Name".substring(0, 250).concat('...');
Wide-eyed Warbler

JavaScript Truncate String

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

Schneiden Sie ein String-JavaScript ab

function truncateString(str, num) {
  return str.length > num ? str.slice(0, num) + "..." : str;
}
Angry Alpaca

wie man die Zeichenfolge in JavaScript abschneidet

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

String String in 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

Schneiden Sie eine Zeichenfolge mit JavaScript aus

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

Ähnliche Antworten wie “String String in JavaScript”

Fragen ähnlich wie “String String in JavaScript”

Weitere verwandte Antworten zu “String String in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen