\ n as3粘贴到剪贴板

时间:2013-07-02 16:08:30

标签: actionscript-3

我想将一个大文本字符串发送到剪贴板以粘贴到另一个应用程序中。在字符串中有一些新的行标记\ n。如果我将字符串发送到flash中的动态文本字段,它可以正常工作,但如果我将字符串复制到剪贴板并从那里粘贴到记事本中,则换行符不起作用。

有什么建议吗?

示例:

var output:String;
output = "This is the first line" + "\n" + "This is the second line";
System.setClipboard(output);

由于

1 个答案:

答案 0 :(得分:0)

用正则表达式替换它们:

var reg:RegExp = new RegExp("\n", "gi");
newString = inputString.replace(reg, "\r\n");