Python Forum
Print a certain string only the first time it appears in a test file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Print a certain string only the first time it appears in a test file
#2
(Jul-22-2020, 05:31 AM)buttercup Wrote: I want to print the List of ARFCNs which is available numerous times in the text.

I find it odd that you pasted such a large text segment, but I only see one line with "List of ARFCNs", so when I run your program, I don't really see the problem.

Quote:How can I modify the code so that it prints the list only the first time it appears in text

Once you find the match you want, break out of the loop.

Quote: and also counts the number of entries in the list?

Split the line on =, then for the second part, split it into a list on spaces. You can then keep the entries around and count them with len()
Reply


Messages In This Thread
RE: Print a certain string only the first time it appears in a test file - by bowlofred - Jul-22-2020, 06:45 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Need to replace a string with a file (HTML file) tester_V 1 796 Aug-30-2023, 03:42 AM
Last Post: Larz60+
  Formatting a date time string read from a csv file DosAtPython 5 1,386 Jun-19-2023, 02:12 PM
Last Post: DosAtPython
  Print names in x-axis of a time-series values hobbyist 4 1,266 Apr-22-2023, 09:29 PM
Last Post: deanhystad
  unittest generates multiple files for each of my test case, how do I change to 1 file zsousa 0 985 Feb-15-2023, 05:34 PM
Last Post: zsousa
  error handler appears to be turned off. How do I turn it back on? jpotter0 0 608 Nov-26-2022, 11:44 AM
Last Post: jpotter0
  Saving the print result in a text file Calli 8 1,896 Sep-25-2022, 06:38 PM
Last Post: snippsat
  How to sort .csv file test log which item first fail and paint color SamLiu 24 5,125 Sep-03-2022, 07:32 AM
Last Post: Pedroski55
  Remove a space between a string and variable in print sie 5 1,844 Jul-27-2022, 02:36 PM
Last Post: deanhystad
  Can you print a string variable to printer hammer 2 1,996 Apr-30-2022, 11:48 PM
Last Post: hammer
  failing to print not matched lines from second file tester_V 14 6,216 Apr-05-2022, 11:56 AM
Last Post: codinglearner

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020