I\'m trying to implement a feature inside the current program that I\'m writing and I wanna learn how to scroll down to specific text inside a JTextArea. For example, lets s
First get the text you set in the text area and build an index using a map to hold the character and the position you find it on.
Based on this the previous answer suggested used the setCaretPosition using the value retrieved from the map.