Given a string like so:
Hello {FIRST_NAME}, this is a personalized message for you.
Is it possible to build a regexp for use with Javas Pattern.split(..) method to reproduce the StringTokenizer("...", "...", true) behaveiour? So that the input is split to an alternating sequence of ...
Pattern.split(..)
StringTokenizer("...", "...", true)