String





js/script.js
  • function funMake() {
  •  // length
  •  var str = 'Hello World!';
  •  document.write(str.length + '<br />');
  •  
  •  // concat()
  •  var str0 = 'Hello';
  •  var str1 = '&nbsp;';
  •  var str2 = 'World';
  •  var str3 = '!';
  •  var res = new String().concat(str0, str1, str2, str3);
  •  document.write(res + '<br />');
  •  
  •  // toUpperCase()
  •  str = 'hello world!';
  •  str = str.toUpperCase();
  •  document.write(str + '<br />');
  •  
  •  // toLowerCase()
  •  str = 'HELLO WORLD!';
  •  str = str.toLowerCase();
  •  document.write(str + '<br />');
  •  
  •  // charAt()
  •  str = 'Lugansk';
  •  var i = str.charAt(3);
  •  document.write(i + '<br />');
  •  
  •  // indexOf()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  i = str.indexOf('Lugansk');
  •  document.write(i + '<br />');
  •  
  •  // lastIndexOf()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  i = str.lastIndexOf('Lugansk');
  •  document.write(i + '<br />');
  •  
  •  // search()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  i = str.search('Lugansk');
  •  document.write(i + '<br />');
  •  
  •  // replace()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  str = str.replace('Lugansk', 'New York');
  •  str = str.replace('Lugansk', 'New York');
  •  document.write(str + '<br />');
  •  
  •  // slice()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  str = str.slice(0, 30);
  •  document.write(str + '<br />');
  •  
  •  // substring()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  str = str.substring(0, 30);
  •  document.write(str + '<br />');
  •  
  •  // split()
  •  str = '1,2,3,4,5,6,7';
  •  var ara = str.split(',');
  •  for(var i=0; i<ara.length; i++) {
  •   document.write(ara[i] + '&nbsp;');
  •  }
  •  document.write('<br />');
  •  
  •  // match()
  •  str = 'I live in Ukraine. I work by a software developer and I read a special books about JavaScript.';
  •  var pattern = /I/;
  •  var query = str.match(pattern);
  •  for(var i=0; i<str.length; i++) {
  •   if(query == str[i]) {
  •    document.write(query + '&nbsp;');
  •   }
  •  }
  •  document.write('<br />');
  •  
  •  // big()
  •  str = 'Hello World!';
  •  document.write(str.big() + '<br />');
  •  
  •  // small()
  •  str = 'Hello World!';
  •  document.write(str.small() + '<br />');
  •  
  •  // bold()
  •  str = 'Hello World!';
  •  document.write(str.bold() + '<br />');
  •  
  •  // italics()
  •  str = 'Hello World!';
  •  document.write(str.italics() + '<br />');
  •  
  •  // strike()
  •  str = 'Hello World!';
  •  document.write(str.strike() + '<br />');
  •  
  •  // sub()
  •  var val = 'Привет Мир!';
  •  str = 'Hello World!';
  •  document.write(val + str.sub() + '<br />');
  •  
  •  // sup()
  •  var val = 'Привет Мир!';
  •  str = 'Hello World!';
  •  document.write(val + str.sup() + '<br />');
  •  
  •  // link(url)
  •  str = 'mail.ru';
  •  document.write(str.link('http://mail.ru') + '<br />');
  •  
  •  // fontsize(size);
  •  str = 'Hello World!';
  •  document.write(str.fontsize(26) + '<br />');
  •  
  •  
  •  // fontcolor(color)
  •  str = 'Hello World!';
  •  document.write(str.fontcolor('#F00'));
  • }
  • function funMake() {
  •  // length
  •  var str = 'Hello World!';
  •  document.write(str.length + '<br />');
  •  
  •  // concat()
  •  var str0 = 'Hello';
  •  var str1 = '&nbsp;';
  •  var str2 = 'World';
  •  var str3 = '!';
  •  var res = new String().concat(str0, str1, str2, str3);
  •  document.write(res + '<br />');
  •  
  •  // toUpperCase()
  •  str = 'hello world!';
  •  str = str.toUpperCase();
  •  document.write(str + '<br />');
  •  
  •  // toLowerCase()
  •  str = 'HELLO WORLD!';
  •  str = str.toLowerCase();
  •  document.write(str + '<br />');
  •  
  •  // charAt()
  •  str = 'Lugansk';
  •  var i = str.charAt(3);
  •  document.write(i + '<br />');
  •  
  •  // indexOf()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  i = str.indexOf('Lugansk');
  •  document.write(i + '<br />');
  •  
  •  // lastIndexOf()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  i = str.lastIndexOf('Lugansk');
  •  document.write(i + '<br />');
  •  
  •  // search()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  i = str.search('Lugansk');
  •  document.write(i + '<br />');
  •  
  •  // replace()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  str = str.replace('Lugansk', 'New York');
  •  str = str.replace('Lugansk', 'New York');
  •  document.write(str + '<br />');
  •  
  •  // slice()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  str = str.slice(0, 30);
  •  document.write(str + '<br />');
  •  
  •  // substring()
  •  str = 'I work by a software developer in Lugansk. I live in Lugansk';
  •  str = str.substring(0, 30);
  •  document.write(str + '<br />');
  •  
  •  // split()
  •  str = '1,2,3,4,5,6,7';
  •  var ara = str.split(',');
  •  for(var i=0; i<ara.length; i++) {
  •   document.write(ara[i] + '&nbsp;');
  •  }
  •  document.write('<br />');
  •  
  •  // match()
  •  str = 'I live in Ukraine. I work by a software developer and I read a special books about JavaScript.';
  •  var pattern = /I/;
  •  var query = str.match(pattern);
  •  for(var i=0; i<str.length; i++) {
  •   if(query == str[i]) {
  •    document.write(query + '&nbsp;');
  •   }
  •  }
  •  document.write('<br />');
  •  
  •  // big()
  •  str = 'Hello World!';
  •  document.write(str.big() + '<br />');
  •  
  •  // small()
  •  str = 'Hello World!';
  •  document.write(str.small() + '<br />');
  •  
  •  // bold()
  •  str = 'Hello World!';
  •  document.write(str.bold() + '<br />');
  •  
  •  // italics()
  •  str = 'Hello World!';
  •  document.write(str.italics() + '<br />');
  •  
  •  // strike()
  •  str = 'Hello World!';
  •  document.write(str.strike() + '<br />');
  •  
  •  // sub()
  •  var val = 'Привет Мир!';
  •  str = 'Hello World!';
  •  document.write(val + str.sub() + '<br />');
  •  
  •  // sup()
  •  var val = 'Привет Мир!';
  •  str = 'Hello World!';
  •  document.write(val + str.sup() + '<br />');
  •  
  •  // link(url)
  •  str = 'mail.ru';
  •  document.write(str.link('http://mail.ru') + '<br />');
  •  
  •  // fontsize(size);
  •  str = 'Hello World!';
  •  document.write(str.fontsize(26) + '<br />');
  •  
  •  
  •  // fontcolor(color)
  •  str = 'Hello World!';
  •  document.write(str.fontcolor('#F00'));
  • }


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <script src="js/script.js"></script>
  • </head>
  • <body>
  • <script>
  •  funMake();
  • </script>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <script src="js/script.js"></script>
  • </head>
  • <body>
  • <script>
  •  funMake();
  • </script>
  • </body>
  • </html>