我想创建一个触发器和/或类来计算 Salesforce.com 中长文本字段中的换行数。
如果我将调试消息更改为将 commentsLength 写入自定义字段,此逻辑是否有效?
public with sharing class TaskCommentsCount {
Integer commentsLength = 0;
for(Task t : [Select Comments From Task]){
List<String> lines = t.Comments.split('\n');
commentsLength += lines.size();
}
system.debug('Comments lines: ' + commentsLength);
}