Hi there,
Hope someone can help me out with this problem.
I want to delete a number of blocks of my document. The blocks I want to delete looks like this:
The starting text will always be 'java.lang.xxxxx' and this text will always be the first part of the line (tabs and spaces might occur).
'java.lang.xx' can also appear other places in the document but if 'java.lang.xx' is not found on the start of a line then the text must NOT be deleted.
The end of the text part I want to delete will always be an empty line.
I tried something like this: %[^t ]++^(java.lang*^)^(*%^p) - but it didn't work
Can anyone help me out here.
thanks
Hope someone can help me out with this problem.
I want to delete a number of blocks of my document. The blocks I want to delete looks like this:
Code: Select all
java.lang.ArrayIndexOutOfBoundsException: 65533
at defacto.calcscript.Lexer.next_token(Lexer.java:677)
at java_cup.runtime.lr_parser.scan(lr_parser.java:335)
at java_cup.runtime.lr_parser.parse(lr_parser.java:563)
at defacto.calcscript.Interpreter.parseScript
(empty line)
'java.lang.xx' can also appear other places in the document but if 'java.lang.xx' is not found on the start of a line then the text must NOT be deleted.
The end of the text part I want to delete will always be an empty line.
I tried something like this: %[^t ]++^(java.lang*^)^(*%^p) - but it didn't work
Can anyone help me out here.
thanks