How to solve the problem of garbled Chinese characters in javascript intercepted strings

藏色散人
Release: 2021-11-03 14:21:44
Original
11336 people have browsed it

Solution to javascript intercepting Chinese garbled strings: 1. Open the corresponding js code file; 2. Use the "function subString(str, len, hasDot){...}" method to intercept Chinese and English strings That’s it.

How to solve the problem of garbled Chinese characters in javascript intercepted strings

The operating environment of this article: windows7 system, javascript version 1.8.5, Dell G3 computer.

How to solve the problem of garbled Chinese characters in javascript intercepted strings?

js intercepts Chinese and English strings without garbled characters

The code is as follows:

function subString(str, len, hasDot)  //js截取中英文字符串无乱码
        {
            var newLength = 0;
            var newStr = "";
            var chineseRegex = /[^\x00-\xff]/g;
            var singleChar = "";
            var strLength = str.replace(chineseRegex,"**").length;
            for(var i = 0;i < strLength;i++){
                singleChar = str.charAt(i).toString();
                if(singleChar.match(chineseRegex) != null){
                    newLength += 2;
                }else{
                    newLength++;
                }
                if(newLength > len){
                    break;
                }
                newStr += singleChar;
            }
             
            if(hasDot && strLength > len){
                newStr += "...";
            }
            return newStr;
        }
         
        //var subdescription = subString("js截取中英文字符串无乱码",10,true)
        //document.write(subdescription);<!--用document.write()输出<li>title</li>-->
Copy after login

[Recommended learning: javascript basic tutorial]

The above is the detailed content of How to solve the problem of garbled Chinese characters in javascript intercepted strings. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template