Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kcire
  • Order by date
  1. kcire

    FileHandle - ''quoting" single word from searching within a file

    i mean "quote" exactly the word you typed on the searching instead of the whole line!! is it possible? thank you
  2. kcire

    FileHandle - ''quoting" single word from searching within a file

    hello guys i set this code , and i would like to know if its possible put "quotes" on the searched word. Thank You #word searching program within a txt file #!C:/perl/bin/perl.exe start: #Handle Area - file opening open FILE, "c:/perl/notice.txt" or die "failed to open notice.txt $!\n"...
  3. kcire

    FILE LOG ERROR REPORT

    nice, Annihilannic. where can i place the value=1 when the key word match with the content of .txt ? im trying set a variable to the txt file and refering to it print "sry\n" if it doesnt match with de txt content, but doesnt work
  4. kcire

    FILE LOG ERROR REPORT

    a last question guys how to make a condition to the file notice.txt that if the word was not found it gives a msg "sry this word was not found" here´s the code once again #!C:/perl/bin/perl.exe start: open FILE, "c:/perl/notice.txt" || die "failed to open notice.txt $!\n"; @read=<FILE>; #...
  5. kcire

    FILE LOG ERROR REPORT

    Thanks a lot man it worked perfectly
  6. kcire

    FILE LOG ERROR REPORT

    can someone help me ? to get a specific word, from a text.txt here is the code, #!C:/perl/bin/perl.exe open (my $read, "c:/perl/notice.txt" )|| die "failed to open notice.txt $!\n"; while(<$read>) { print "$_"; } close $read; print "search a word\?\n"; $choose=<STDIN>; chomp $choose...
  7. kcire

    FILE LOG ERROR REPORT

    could someone give any tip? some light about it
  8. kcire

    FILE LOG ERROR REPORT

    could someone give any tip ? give some light about it
  9. kcire

    FILE LOG ERROR REPORT

    that´s a code that I have not known yet im learning by books and i needed a little tip about this specific subject with someone,
  10. kcire

    FILE LOG ERROR REPORT

    hello i´d like to know the script that allows me to search in a file.txt a specific word or line, and report log errors by missing specific informations as words itself or datas.
  11. kcire

    FILEHANDLE

    Hello utilizing this filehandle topic, i´d like to know the script that allows me to search in a file.txt a specific word or line, and report log errors by missing specific informations as words itself or datas.
  12. kcire

    open programs

    thanks man, i got it on perldoc
  13. kcire

    open programs

    nice can you give me an example? im perl starter programing
  14. kcire

    open programs

    hi all i have one question about call an external programs with perl how can i call a program (ex: calculator,messenger,word...) by writing a perl code?? is that possible?
  15. kcire

    Problems with CPAN - begginer

    some *** is being made by me, by fact, but i started for about a few days i installed the strawberry perl win32 for XP, and then there´s a CPAN Client on it, followed the book, it seems to give the feeling that the perl code was on CPAN(even i noticed that CPAN uses to...
  16. kcire

    Problems with CPAN - begginer

    Kevin the problem is that i cant send a code because none of perl code is accepted in my perl CPAN Client im following a book "PERL - Complete Guide" from O´Reilly publisher by ellen siever, stephen spainhour & Nathan Patwardhanand, and those codes shown in is not applying im my case, its...
  17. kcire

    Problems with CPAN - begginer

    i already typed #!usr/bin/perl it shows strict subs error at usr, bin and perl
  18. kcire

    Problems with CPAN - begginer

    hello im begginer in perl i have strawberry perl installed im my machine, and im having problems with setting perl commands on CPAN Client, no perl commands is accepted one example is: !/usr/bin/perl error: "Bareword found where operator expected at <eval 20> line 1

Part and Inventory Search

Back
Top