I want to create a small window where a user will :
- Enter some text in JTextField1.
- Then he will enter a regular expression in JTextField2 to check if the text in JTextField1 has some text matching this Regex.
- And another field JTextField3 that he can enter a formating for the matching text
- The user will then get the final text matching this and formatted in JTextField4.
This seems to be complicated, but i hope this screenshot will clarify my needs :

Implementing the first 2 fields was easy, but the third field, that is what i want to ask about. I have read about Back references that can help me do that, but it is not so clear to me. What i understand is that if i wrote \2, \1 as it appears in the screenshot, then it will grab the second bracket in the Regex then adds a comma + a space then grabs the first bracket in the Regex, giving the right final result.
1. Is this right, or am i missing something ?
2. Is this the best solution to implement what i need to do ?
3. After getting the matcher in Java code = Returns "K1234 T1234567" what is the code to format it using the specified format ?