어떻게 Nodejs에서 문자열의 길이를 바이트 형식으로 가져옵니까?
2053 단어 node
노드에서 바이트 단위의 문자열 길이를 가져옵니다.js,
byteLength()
클래스에서 Buffer
방법을 사용할 수 있습니다.Hello World!
라는 문자열이 있다면// string
const str = "Hello World!";
문자열의 바이트를 가져오려면 Buffer.byteLength()
을 사용하십시오.// string
const str = "Hello World!";
// get string length in bytes
const bytes = Buffer.byteLength(str, "utf-8");
console.log(bytes); // 12
Buffer
,String
등 유형을 첫 번째 매개 변수로 받아들인다.utf-8
입니다.integer
로 되돌려줍니다.만약 네가 이것이 매우 유용하다고 생각한다면 마음대로 공유해라😃.
Reference
이 문제에 관하여(어떻게 Nodejs에서 문자열의 길이를 바이트 형식으로 가져옵니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/melvin2016/how-to-get-the-length-of-the-string-as-bytes-in-nodejs-14hn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)