“Sous-chaîne JavaScript après le caractère” Réponses codées

Obtenez de la chaîne après le caractère javascript

const str = '01-01-2020';

// get everything after first dash
const slug = str.substring(str.indexOf('-') + 1); // 01-2020

// get everything after last dash 
const slug = str.split('-').pop(); // 2020
Thoughtful Thrush

Sous-chaîne JavaScript après le caractère

var testStr = "sometext-20202"
var splitStr = testStr.substring(testStr.indexOf('-') + 1);
Narshe

supprimer les 3 premiers caractères de la chaîne javascript

var string = "abcd";
console.log(string.substring(3)); //"d"
1337

Obtenez tout après le premier personnage javascript

var val = 'asdasd:111122:123123123';
var response = val.substring(val.indexOf(":"));

alert(response); // ":111122:123123123"
Lonely Doge

Sous-chaîne JavaScript après le caractère

// function you can use:
function getSecondPart(str) {
    return str.split('-')[1];
}
// use the function:
alert(getSecondPart("sometext-20202"));
Narshe

Sous-chaîne JavaScript après le caractère

const str = 'sometext-20202';
const slug = str.split('-').pop();
Narshe

Réponses similaires à “Sous-chaîne JavaScript après le caractère”

Questions similaires à “Sous-chaîne JavaScript après le caractère”

Plus de réponses similaires à “Sous-chaîne JavaScript après le caractère” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code