I have serbian-english words in .rtf format and I need to extract it from this document and put them into some datastructure. I know to work with databases but I don't know if it is suitable for this situation. For example i have italic words and don't know how to put this into database (maybe to put inside tags?). Is there some other datastructure for storing formatted text (bold and italic)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It depends on the granularity you need in the db. Can you define a consistent data model based on the meaning of the formatting?
Ideally the formatting (view) and database (model) should be seperated. But if this is is making the problem in hand overly complex, then storing markup data is a reasonable option. |
|||
|
|
|
this depends if the whole text is underlined/italic or just some parts. If the whole text is underlined/italic you could add two columns like "is_bold" and "is_italic" to your database table. Otherwise I'd suggest some kind of markup (HTML Tags or Markdown). I focused on the database solution because I assume that you want to store this dictionary persistently. Greetings Simon |
|||
|
|
Mapimplementations, likejava.util.HashMap. If you want this stuff to persist, then using a database (even something likesqlite3) would be one way to go. – birryree Mar 5 '11 at 1:19