이번에는 JS에서 문자열의 일반적인 속성과 메소드에 대해 알려드리겠습니다. JS에서 문자열 속성과 메소드를 사용할 때 주의사항은 무엇인가요?
Attributevar str='hello world'; alert(str.length); // 11
var str='hello world'; alert(str.charAt(4)); // o
var str='a'; alert(str.charCodeAt(0)); // 97
alert(String.fromCharCode(97)); // a
var str1='hello';var str2=' world'; alert(str1.concat(str2)); // hello world
var str='hello world,hello moli'; alert(str.indexOf('hello')); // 0
var str='hello world,hello moli'; alert(str.lastIndexOf('hello')); // 12
정규 표현식과 일치하는 항목을 찾습니다. 반환 없음 null
var str='hello world,hello moli'; alert(str.match('hello')); // hello
var str='hello world';// 用moli替换worldalert(str.replace(/world/,'moli')); // hello moli
var str='hello world'; alert(str.search(/world/)); // 6
var str='hello world'; alert(str.slice(6,11)); // world
var str='h-e-l-l-o'; alert(str.split('-')); // h,e,l,l,o
var str='hello world,hello moli'; alert(str.substr(5,6)); // world
var str='hello moli';alert(str.substring(6,8)); // mo// 注:// 与 slice() 和 substr() 方法不同的是,substring() 不接受负的参数
var str='Hello Moli'; alert(str.toLowerCase()); // hello moli
var str='Hello Moli'; alert(str.toUpperCase()); // HELLO MOLI
위 내용은 JS 문자열의 일반적인 속성과 메서드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!