如何拆分 SIL 脚本语言中的长代码行
how to split long code lines in SIL script language
我想知道如何拆分 SIL 中的代码行?
在 doc
中找不到与此相关的任何内容
string [] keys = selectIssues("project = jgate AND issuetype in (SMSGateTemplate
, SMSGateTemplateCreate, SMSGateTemplateDelete, SMSGateTemplateUpdate)");
在这个例子中我需要拆分字符串
只是想出我可以分裂
string someString = "word and another word";
通过像这样使用 + 运算符将括号中的文本拆分为多个字符串:
string someString = "word and "
+ "another word";
这解决了我的长字符串可读性问题
我想知道如何拆分 SIL 中的代码行? 在 doc
中找不到与此相关的任何内容string [] keys = selectIssues("project = jgate AND issuetype in (SMSGateTemplate
, SMSGateTemplateCreate, SMSGateTemplateDelete, SMSGateTemplateUpdate)");
在这个例子中我需要拆分字符串
只是想出我可以分裂
string someString = "word and another word";
通过像这样使用 + 运算符将括号中的文本拆分为多个字符串:
string someString = "word and "
+ "another word";
这解决了我的长字符串可读性问题