Results 1 to 4 of 4
Thread: HIGHLIGHTING certain strings
- 05-01-2012, 12:51 PM #1
Member
- Join Date
- Apr 2012
- Posts
- 9
- Rep Power
- 0
HIGHLIGHTING certain strings
Hi, so I have text in my JTextArea. A method is called to break up that text into sentences stored in an ArrayList. It is necessary for this to happen so I can find certain strings within the sentence.
So right now i have the original in the JTextArea and a copy broken up into sentences in an ArrayList.
My Goal is to highlight the string I found (in the ArrayList through other methods), but only in the place where i found it in the sentence.
ex.) "The yellow pineapple is yellow." Lets say the string I found (in the ArrayList) was the last "yellow" in the sentence.
My Problem is How can i find that exact same "yellow" in the original text and highlight it?
This has really been messing me up so any insight would be really helpful and appreciated. Thank you.
- 05-01-2012, 01:49 PM #2
Re: HIGHLIGHTING certain strings
I would suggest using a data structure more suited to the task. For example, with a LinkedHashMap<String, Integer> you could store the starting index of each sentence and use that index along with the index of the word within the sentence to locate the word in the JTextArea.
Watch out for newlines if your text may contain them. See camickr's Text and New Lines « Java Tips Weblog
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 05-01-2012, 03:31 PM #3
Member
- Join Date
- Apr 2012
- Posts
- 9
- Rep Power
- 0
- 05-01-2012, 05:04 PM #4
Re: HIGHLIGHTING certain strings
Why do they call it rush hour when nothing moves? - Robin Williams
Similar Threads
-
Search Result and Highlighting
By sprateek in forum LuceneReplies: 0Last Post: 10-08-2011, 01:50 PM -
Highlighting line in JTextArea
By misiom1 in forum New To JavaReplies: 4Last Post: 01-15-2011, 01:39 PM -
JTree setSelectionPath not highlighting
By PrinceSendai in forum AWT / SwingReplies: 2Last Post: 12-22-2010, 05:34 AM -
Eclipse Syntax Highlighting
By garrettgjb in forum EclipseReplies: 1Last Post: 08-24-2009, 03:10 PM -
[SOLVED] Line Highlighting
By Doctor Cactus in forum New To JavaReplies: 2Last Post: 03-26-2009, 03:55 PM


2Likes
LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks