Quote:
Originally Posted by Turtle91
I'm not aware of a way to select "line 14" and delete it, but if it has a consistent formatting or something that you can use the regex search to find then I'd use that.
|
Can't be done with a regex, but can be easily done with a throwaway plugin.
The line number is hard-coded in the following line:
which obviously needs to be changed for other line numbers. Since Python uses zero-based indexing, the OP'll need to subtract 1 from the line number (text[
13] refers to line
14).