Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a way to take a string like: "pleas take this ${date.object}." and a dictionary that has the key "object"

and replacing as EL does.

i.e. if "object"=>"bag" then I want to get the string "pleas take this bag."

I know I can do this using explicit string replacement but was looking for a way to utilize the same engine used by EL.

share|improve this question
3  
1  
Is this in the context of a Java web application executed by a Servlet Engine, or in some standalone application? – erickson Oct 17 '11 at 7:37
@erickson, the former. – epeleg Oct 24 '11 at 20:13

1 Answer

MessageFormat does something similuar. May be you can use this?

Example:

 MessageFormat.format("pleas take this {0} or may be this {1}", object, object2);
share|improve this answer
This does not answer my Q. As it assumes I control the string structure and object fields. – epeleg Mar 4 '12 at 12:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.