Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]3 Replies - 48 Views - Last Post: Yesterday, 03:50 PM
#1
Reputation: 0
- Posts: 1
- Joined: Yesterday, 03:27 PM
Posted Yesterday, 03:38 PM
Hi, I apologize if I am posting this in the wrong place. I just joined for help with this problem. (A little background, I code for fun and am fairly new with Java)I want to make a program that can accept input in a text box (The large ones, not the one line kind), filter out parts of the input, and export this output to a text file or other sort of data base.
For example, I would take the following info (say off a forum. a quick copy on paste of the general area)
"Jimmy
N00b
Posts: 2
Re: Introduce yourself!
? Reply #1207 on: Today at 07:52:52 AM ?
QuoteModifySplit Topic
Name: Jim
Age: 24
Location: New York City
Report to moderator "
And filter out these lines
"Name: Jim
Location: New York City"
Then output in this format
"Jim - New York City"
Do you understand what I mean? I'm sorry if I am not clear. I have not tried to start writing this code yet, because I do not know if it is possible.
Is This A Good Question/Topic? 0
Replies To: Question: Is input/output filtering possible with Java?
#2
Reputation: 2
- Posts: 11
- Joined: 24-September 12
Re: Question: Is input/output filtering possible with Java?
Posted Yesterday, 03:47 PM
I'm not sure off hand of the "simplest" way to approach this problem. But I think I could at least point you in the right direction by mentioning the use of Java's substring methods which would allow you to pick apart the text. I suppose you could use nested loops to increment to a delimiter for which to begin the text you want to extract and then increment until you find the end of this. Sort of a rudimentary parsing code I guess, that would work if the format of the input string was always consistent.There's also a "replace" method in Java's string class which can be used to remove symbols and specific characters which could also be useful.
I'd say the problem is definitely possible though. A good bit of messing around to figure out what works best. I'll dig around and see if I can find any more useful information.
#3
Reputation: 9056
- Posts: 33,609
- Joined: 27-December 08
Re: Question: Is input/output filtering possible with Java?
Posted Yesterday, 03:48 PM
You can create a JTextArea and use it with your JOptionPane dialog. Then after the user clicks the OK button, you can getText() on your JTextArea.JTextArea area = new JTextArea(); JOptionPane.showConfirmDialog(null, area); System.out.println(area.getText());
#4
Reputation: 8040
- Posts: 31,233
- Joined: 06-March 08
Re: Question: Is input/output filtering possible with Java?
Posted Yesterday, 03:50 PM
GeniusInc, on 29 May 2013 - 06:38 PM, said:
I want to make a program that can accept input in a text box (The large ones, not the one line kind), filter out parts of the input, and export this output to a text file or other sort of data base.
This is possible in any language that I know, don't see why Java would be different and thus your question
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/322061-question-is-inputoutput-filtering-possible-with-java/
michael kidd gilchrist national championship calipari national archives brock lesnar kentucky jayhawks
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.