Home  >  Article  >  Web Front-end  >  How to solve the problem of garbled Chinese characters in javascript intercepted strings

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

藏色散人
藏色散人Original
2021-11-03 14:20:3811318browse

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>-->

[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!

Statement:
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