例如以下字符串 let str = “hello world 你好世界 This is a demo” 要获取的结果是 str = hello world 主要代码 let str = “hello world 你好世界 This is a demo” let index = str.match(/[\u4e00-\u9fa5]/)["index"] str.substring(0,index) 结果如下