Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~6K People Reached
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for avataralien

I wanted to do a simple date validation to disallowed string from entering when prompt. Pls guide me. Tks. Eg, "Enter the publish date in DD/MM/YYYY : ghghjb "Sorry, pls enter in DD/MM/YYYY" "Enter the publish date in DD/MM/YYYY : [CODE] # include<iostream> # include<string> using namespace std; class date …

Member Avatar for Taywin
0
106
Member Avatar for avataralien

I got a HTML file. I wish to parse the content I need to a text file. How can I make use of The unix utility application that strips the HTML markup tags from the file’s content leaving just content text? Thanks for the advise! [B][U]Partial HTML file code[/U][/B] [CODE]<thead> …

Member Avatar for shibblez
0
575
Member Avatar for avataralien

How can I make use of sed (Stream Editor) to parse a html file for the required data I needed? Kindly explain to me. [url]http://www.daniweb.com/forums/post1354118.html#post1354118[/url]

Member Avatar for rch1231
0
89
Member Avatar for avataralien

I am trying to create a cpp file that will enable user to download the content from a web URL & stored it to a desired html file. I am running on Linux. The program will call GNU wget CLI program to grab the content & stored it to a …

Member Avatar for avataralien
0
191
Member Avatar for avataralien

I am checking on ways to update my text file existing record. For example I wanted to update the "Address" & "SSN" for Mary Rose to other information using the following code fragment. How can I make use of scanner to complete my code? Code Fragment [CODE] case 1: System.out.print("Address: …

Member Avatar for NormR1
0
106
Member Avatar for avataralien

I am not sure what is wrong with my While Loop because if select ("Press 0 to edit info."), I will not get prompt for "Name" anymore. Another thing is my exception does not work. I wanted to deny user from entering alphanumeric under "Mobile". Only numeric allowed here. Pls …

Member Avatar for avataralien
0
125
Member Avatar for avataralien

May I know what are bits fields & the 5 bits of hole for? [CODE] struct Record { unsigned int n1 : 3; // 3 bits, can store 0 - 7 int : 5; // 5 bits of hole unsigned int n2 : 4; // 4 bits, can store 0 …

Member Avatar for Fbody
0
74
Member Avatar for avataralien

What does prev, curr & temp stand for? [CODE]struct Node; typedef Node* NodePtr; struct Node { void* data; NodePtr prev, curr; }; void bigTraversal(const NodePtr& head, const NodePtr& tail) { // need to by pass by temp NodePtr temp = head; while(temp != NULL) { temp = temp -> next; …

Member Avatar for thomas_naveen
0
65
Member Avatar for avataralien

I have problem understanding hashing using linear probing & quadratic probing. Is there any easy to understand guides?

Member Avatar for Narue
0
71
Member Avatar for avataralien

[CODE] try{int x = 0; cin>> x; if ( x > 100) throw 1; else cout<< “Good data”<< endl; } catch ([COLOR="Red"]int i[/COLOR]) { cout<< “Exception “<< i << “thrown”<< endl; }[/CODE] I need to know why the catch is int i & not int x?

Member Avatar for MyrtleTurtle
0
71
Member Avatar for terabithia

What's are you going to do with? int Queue::size = 0; Looks like no function matching when program compiled.

Member Avatar for scott.vass
0
3K
Member Avatar for terabithia

Can you rephrase your qns again? What about the code for adding, subtracting, transpose?

Member Avatar for Lerner
0
1K

The End.