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 - 72 Views - Last Post: Yesterday, 06:57 PM
#1
Reputation: 2
- Posts: 10
- Joined: 31-October 12
Posted Yesterday, 04:42 PM
I am trying to read in data from a file and the data file contains lines(22,32,34)
(56,22,34)
and so on in that format.
I can read in the lines if they were just
22 32 24
so on...
Just fine, but the additional chars are throwing me off.
A made a simple driver program to try and debug my problem and all I can get is for it to read the first line and no others. If I set the while loop to run for infinity it will pick up other lines besides the first. If I set it to just read in the 7 elements that it should it reads in nothing, and finally if I set it like it is now below it only picks up the first line.
Any help or tips appreciated.
int main(int argc, char *argv[]) { FILE *fp; int a,b,c,total; char x,y,z,j; fp = fopen(argv[1],"r"); // while( total = fscanf(fp,"%d%d%d",&a,&b,&c) > 0 ){ while( total = fscanf(fp,"%c%d%c%d%c%d%c",&x,&a,&y,&b,&z,&c,&j) >= 0 ){ printf("total = %d \n",total); printf("First = %d Second = %d Third = %d\n",a,b,c); printf("First = %c Second = %c Third = %c 4th = %c\n",x,y,z,j); } return 0; }
Is This A Good Question/Topic? 0
Replies To: Reading in data from a file
#2
Reputation: 1750
- Posts: 5,198
- Joined: 05-May 12
Re: Reading in data from a file
Posted Yesterday, 04:50 PM
You also need to read the '\n' or '\r\n' that is at the end of each line after the ')'.I suggest using fgets() to get the entire line first, and then using sscanf() or strtok() to parse the line.
#3
Reputation: 2
- Posts: 10
- Joined: 31-October 12
Re: Reading in data from a file
Posted Yesterday, 04:58 PM
Thanks for that I'll get to work on that right away. Is there a reason for when the data is say three ints
such as 78 67 62 you can read it in with scanf("&d&d&d",&a,&b,&c); and not worry about the \n?
#4
Reputation: 2
- Posts: 10
- Joined: 31-October 12
Re: Reading in data from a file
Posted Yesterday, 06:57 PM
Very messy and I'm sure a very long way around, but this is how I got it to work....also ignore any // slashed out code. That was left over from trying a lot of stuff.
Press ENTER or type command to continue #include "tree23.c" #include <string.h> int main(int argc, char *argv[]) { FILE *fp; int a,b,c,total; char string[100]; char x,y,z,j,k; char *point; fp = fopen(argv[1],"r"); char delim1[] = "("; char delim2[] = ")"; char delim3[] = ","; // while( total = fscanf(fp,"%d%d%d",&a,&b,&c) > 0 ){ // printf("here\n"); while(fgets(string,100,fp)!= NULL ){ // sscanf(string,"%d%d%d",&a,&b,&c); // a =(int) string[0]; // b =(int) string[3]; // c =(int) string[6]; point = strtok(string,delim2); point = strtok(point,delim1); // point = strtok(point,delim3); sscanf(point,"%d%c%d%c%d",&a,&x,&b,&y,&c); // printf("total = %d \n",total); printf("First = %d Second = %d Third = %d\n",a,b,c); // printf("First = %c Second = %c Third = %c 4th = %c\n",x,y,z,j); } return 0; } ~
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/318016-reading-in-data-from-a-file/
bowling green marysville tornados dr. seuss the temptations rush limbaugh sandra fluke green book
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.