“Lenghth de cordas” Respostas de código

comprimento da corda

string a = "String";
string b = a.Replace("i", "o"); // Strong
       b = a.Insert(0, "My ");  // My String
       b = a.Remove(0, 3);      // ing
       b = a.Substring(0, 3);   // Str
       b = a.ToUpper();         // STRING
int    i = a.Length;            // 6
PrashantUnity

Lenghth de cordas

// 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;
Outstanding Ostrich

String.Length

let message = 'good nite';
console.log(message.length);
// Prints: 9
 
console.log('howdy'.length);
// Prints: 5
Hatim Eddinani

Respostas semelhantes a “Lenghth de cordas”

Perguntas semelhantes a “Lenghth de cordas”

Mais respostas relacionadas para “Lenghth de cordas” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código