我想通过搜索一个ceartain Word,类似于Java.lang.String#split(String)使用 pdfbox 。
有没有办法将文档a
a |
---|
这是一条线, |
这是另一个行, |
这是我要用于拆分的行, |
|
这是常规行, |
这是常规行, |
我想在这里做另一个 行拆分 |
这应该是第三个文档的第一行, |
因此,如果我使用参数值“ split”,它将被分为三个文档:
I would like to split a PDF into multiple PDFs by searching for a ceartain word, similar to java.lang.String#split(String) using PDFBox.
Is there a way to split a document A
A |
---|
This is a line |
This is another line |
This is the line I want to use for the split |
|
This is a regular line again |
This is a regular line as well |
Here I'd like to do another split |
This should be the first line of the third document |
So that if I'd used the parameter value "split" it would be split into three documents like so:
A.0 |
---|
This is a line |
This is another line |
This is the line I want to use for the split |
A.1 |
---|
|
This is a regular line again |
This is a regular line as well |
Here I'd like to do another split |
A.2 |
---|
This should be the first line of the third document |
发布评论