这是一个简单的 MOF 模型到文本脚本:
[comment encoding = UTF-8 /]
[module test('http://www.eclipse.org/uml2/2.1.0/UML')/]
[template public test(element : Model)]
[comment @main /]
[file ('test.txt', false, 'UTF-8')]
start
[loop(element)/]
[loop(element)/]
end
[/file]
[/template]
[template public loop(element : Model)]
[for (var : Integer | Sequence{1..3})]
[var/]
[/for]
[/template]
它生成以下文本:
start
1
2
3
1
2
3
end
如何在 3 之后删除额外的新行?谢谢!