Using chunk template engine in android with custom tags
问题 I am trying to use chunk in android. I need something like this: Suppose, Following are tags. tags: {"world":"WORLD", "c": "Dennis Ritchie", "apple":"JOBS" } Input: HELLO {{ world }}, C is written by {{ c }} , while java is written by {{ java }}, hola. Output: HELLO WORLD, C is written by Dennis Ritchie, while java is written by, hola. In short I need a custom delimiter like, {{ string }} i.e. DEFAULT_TAG_START = "{{"; DEFAULT_TAG_END ="}}"; While if input contains tag which is not specified,