Search in paragraph's text: Difference between revisions

Added 11l
m (syntax highlighting fixup automation)
(Added 11l)
Line 113:
----------------
</pre>
 
=={{header|11l}}==
{{trans|Python}}
 
<syntaxhighlight lang="11l">
V f = File(‘Traceback.txt’)
V rawText = f.read()
 
V paragraphs = rawText.split("\n\n")
 
L(p) paragraphs
I ‘SystemError’ C p
 
V index = p.findi(‘Traceback (most recent call last):’)
 
I -1 != index
print(p[index ..])
print(‘----------------’)
</syntaxhighlight>
 
=={{header|AutoHotkey}}==
1,480

edits