Using Javascript substring and split
he substring property has the same functionality as the substr function in php. For php, I do not know if any of the characters start with a nonspecific character and it is used to determine the ending character of a split. If split is the same as in explode in php, you can parse any part of the text we want. you can try using the following examples to translate each part of each space into a sequence. Do not forget to write the same in the same way you do not write the coding.
Using split ()
var yazı = " cimlere basmayınız..";
var x = yazı.split(" "); // yukardaki yazımızı split fonksiyonuna gecirdik
// fonksiyonun içinede bosluk bırakarak bosluklardan parcalıcamı söledim ve x degiskenine aktardık
document.write(x[0]); // burdada ekrana bastırdık yanlız diziye donustugu için her bosluk bir dizi oldu o yuzden dizi olarak ekrana bastırdık..
ekrana cimlere seklinde bastırır..
Use substring ().
var yazi2 = "Infotech";
var c = yazi2.substring(0,5); // yukardaki yazımızı substring fonksiyonuna gecirdik ve 0 baslayıp 5. karakterde bitmesini söledik
document.write(c);
ekran kolay seklinde bastırır..