NEWS You Can USE

Friday, July 4, 2008

C Program to extract email address from text docs

/*** program to extract email addresses from any text file***/

/*************General Instructions********************
1. Compile this file in GCC compiler.
2. Double click/Run the .out file generated.
3. Give the complete path of files when asked.
*************************************************/


#include < "stdio.h" >
#include < "string.h" >

int main(void)
{
char *sfile_name, *dfile_name, *chr_loc, temp_str[50];
FILE *sfile_ptr, *dfile_ptr;
int i = 0;

printf("\nEnter The Sourse Text File :");
scanf("%s", sfile_name);

printf("\nEnter The Destination Text File :");
scanf("%s", dfile_name);

sfile_ptr = fopen(sfile_name, "r");
dfile_ptr = fopen(dfile_name, "a+");

while(fscanf(sfile_ptr, "%s", temp_str) != EOF)
{
chr_loc = strchr(temp_str, '@');
if(chr_loc != NULL)
{
fprintf(dfile_ptr,"%s\n", temp_str);
printf("\nEntry #%d: %s", ++i, temp_str);
}
}

fclose(sfile_ptr);
fclose(dfile_ptr);
printf("\n\n%d-Email Addresses Found\n", i);
printf("All Entries Made into file %s\n\n", dfile_name);
return 0;
}

0 comments:

Balu's Search Engine

Custom Search

PROFILE

BALAKRISHNAN UNNITHAN
Email : balu8119@gmail.com

CAREER OBJECTIVE:

Intend to build a career as a Software Engineer with a progressive organization, among committed & dedicated people, which helps me explore and enhance my skills and potential to serve the objectives of the organization and there by achieve mutual growth.

EXPERIENCE

Present:
Company: Samsung India Electronics Ltd, Noida.
Domain: C Application Developer for Mobile Phones.
Period: July 2009 - Till date.

Previous:
Company : Cranes Software International Ltd, Bangalore.
Domain : Application developer in Symbian OS S60 platform.
Period: July 2008 - July 2009.

EDUCATION

> Bachelor of Technology in Electronics & Communication.

TRAINING AND CERTIFICATION (CRANES VARSITY)

> Advanced Diploma Course in RTES.
> Symbian OS: Essentials and Systems Programming.

TECHNICAL SKILLS

Languages : C, C++, ASM.
GPOS : LINUX 2.6.
RTOS : VxWorks 5.4, SYMBIAN v.9.3
IDE : Keil-uVision, Carbide.C++, MS VC++.
EDA Tool : Orcad 9.1


ACHIEVEMENTS AND EXTRA CURRICULAR ACTIVITIES

> Earned certificate of merits in talent search exams at school and national levels.
> Participated and won prizes on various cultural and extra curricular activities.
> An active member & Coordinator of N.S.S unit and Nature Club of our college.
> Convened all the organized (Technical & Cultural) events conducted in C.E.A
> General Secretary & Acting Chairman of the College Senate 2005-07.

PERSONAL DETAILS

Age : 23.
Sex : Male.
Nationality : Indian.
Languages known : English, Hindi, Malayalam, Tamil.

******************************************************

BBC World News

BBC Technology News