Tagged Questions

3
votes
6answers
1k views

How to replace text in a PowerPoint (.ppt) document?

What solutions are there? I know only solutions for replacing Bookmarks in Word (.doc) files with Apache POI? Are there also possibilities to change images, layouts, text-styles in .doc and .ppt ...
2
votes
4answers
948 views

Simplest way to use “BeanUtils alike” replace

Is there any libraries that would allow me to use the same known notation as we use in BeanUtils for extracting POJO parameters, but for easily replacing placeholders in a string? I know it would be ...
1
vote
1answer
67 views

What is the syntax for placeholder in Scala replace regex?

So I could write: val res = """(\d*).*""".r.replaceAllIn(s,"""\1""") So far I get literal "1" instead of the captured group. Thank you in advance.