Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/sorting/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 在n个字符之前的最后一个字符上添加换行符字符串_Javascript_Node.js_Node Canvas - Fatal编程技术网

Javascript 在n个字符之前的最后一个字符上添加换行符字符串

Javascript 在n个字符之前的最后一个字符上添加换行符字符串,javascript,node.js,node-canvas,Javascript,Node.js,Node Canvas,首先,这可能是用词不当,因为我不确定如何将我想要的内容放到文字中假设我有这个画布(我使用的是节点画布),我想让它显示用户输入的文本。然而,我这样做的方式将字符数限制为36-38(不寻求解决方案)。因此,我使用正则表达式textstr.match(/.{1,32}/g)编写了一个脚本,它每32个字符分割一个字符串(为了安全起见),计算一个新的画布高度,然后在打印字符串时执行join(“\n”)。然而,当收到反馈时,我意识到沿着字符串中的最后一个空格分割并在那里添加换行符会更好,但我不知道如何做。


首先,这可能是用词不当,因为我不确定如何将我想要的内容放到文字中
假设我有这个画布(我使用的是
节点画布
),我想让它显示用户输入的文本。然而,我这样做的方式将字符数限制为36-38(不寻求解决方案)。因此,我使用正则表达式
textstr.match(/.{1,32}/g)
编写了一个脚本,它每32个字符分割一个字符串(为了安全起见),计算一个新的画布高度,然后在打印字符串时执行
join(“\n”)
。然而,当收到反馈时,我意识到沿着字符串中的最后一个空格分割并在那里添加换行符会更好,但我不知道如何做。
我目前的代码是:

textStr = "123456789 01234567890 123456789012 34567890"
var splitStr 
    if(textstr.length > 32){
    if(textstr.substring(1,32).includes(" ")){ //1,32 so it won't bug out if the first character is a space
//splitStr = textstr.something(test)
    
    } else  {
      splitStr = textstr.match(/.{1,32}/g)
      
    }
    } 
    //canvas initialization blah blah blah
    //load fonts yada yada yada
    ctx.fillText(splitStr.join("\n"), 20, 55) 


我想知道是否有某种正则表达式可以使用。欢迎提供任何帮助/反馈/常识

此解决方案有点复杂,可能需要一些简化。然而,它应该让你大部分时间都在那里

const input = "123456789 01234567890 123456789012 34567890 11444444444 424124  1234124124121 4444444444444444444444444444444444444444444444444444444444444444444444";

const split = (value, width) => {
  const stack = value.split(' ').reverse();
  const results = [];
  let builder = "";
  
  while (stack.length > 0) {
    const item = stack.pop();
    
    if (item.length > width) { // is the current chunk already larger than  our desired width?
      if (builder !== "") { // we have to push our buffer too
        results.push(builder);
        builder = "";
      }
        
      results.push(item);
    } else {
      const line = builder === ""
        ?   item
        : `${builder} ${item}`;
        
      if (line.length > width) { // is our new line greater than our width?
        stack.push(item); // push the item back, since consuming it would make our line length too long. we let the next iteration consume it.              results.push(builder); // push the buffer into our results.
        builder = "";
      } else if (stack.length === 0) { // is this the last element? just add it to the results.
        results.push(line);
      } else {
        builder = line; // update our buffer to the current appended chunk.
      }
    }
  }
  
  return results;
};

split(input, 32).forEach((c) => console.log(c, c.length));
split(input, 32).join("\n");

你能给出一个你期望的输出的例子吗?当然(可能应该这样做:P)如果输入是“123456789 01234567890 123456788901234567890”(它是discord.js的一部分,所以我用它作为示例输入),那么输出将是“1234567889 01234567890\n123456789012 34567890”。我希望它也适用于多行,因此每行中断它都会检查32个字符前的空格。总之,您希望拆分字符串,使行的长度为