I'm developing a Jframe using the GUI designing tool in NetBeans, as part of my school project.
Say the user inputs "ABCDEFG123456" and presses a button. The program should store characters in the range from 2 to 5 of that string in variable1 and from 7 to the end of the string in variable2.
And the result should be: variable1 = "BCDE" variable2 = "G123456"
Update:
Variables:
1st textarea = ep
rearrange = exe
2nd textarea = output

String#substring. Good luck.