Python Forum
find some word in text list file and a bit change to them
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
find some word in text list file and a bit change to them
#1
hi
I need to find some word in my text list file for example V_20220412 in
S1A_IW_SLC__1SDV_20220412T022912_20220412T022940_042734_05197D_3860

then i want to omit " _" so then , it is like this: V20220412
and then i want to get one day before this date : V20220411
after doing these steps for all rows in text list file ,I want to save them in another text file like this:
V20220411
V20220318
V20220222
V20220128
V20220105
Reply
#2
Use "re" (regular expression) to find the desired string. Use "datetime" to do date arithmetic.
Show us your program, and we will help you.
ndc85430 likes this post
Reply
#3
Are you searching for exactly V_20220412or do you need every occurrence of an eight character sequence that begins withV_or something else?
Reply
#4
hi
first of all i appreciate your help (you and ibreeden) and as you can see in my file names in text list file (below) the date repeated 2 times in every file names (in fore example text list file) but with different times (T= time) i need just date with letter V before because i need the text file that you named it before : "pattern_list.txt" ( your previous code for solving my previous post ) in https://python-forum.io/thread-37560.html
so i know you understand what i exactly need (good job) .i have tried to say my problem in two parts(2 posts) because i say these 2 posts in one question , many times ago and i cannot get answer of any body.
S1A_IW_SLC__1SDV_20220412T022912_20220412T022940_042734_05197D_3860
S1A_IW_SLC__1SDV_20220223T022912_20220223T022940_042034_0501CA_70EF
so for every rows in my text list file (or every file name) , i need to find just one repeated date joined with V and then subtract one day fore all of them (so it should be formatted as date ):
V20220411
V20220222
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Replace a text/word in docx file using Python Devan 4 3,290 Oct-17-2023, 06:03 PM
Last Post: Devan
  Find a specific keyword after another keyword and change the output sgtmcc 5 806 Oct-05-2023, 07:41 PM
Last Post: deanhystad
  Program to find Mode of a list PythonBoy 6 1,074 Sep-12-2023, 09:31 AM
Last Post: PythonBoy
  logging: change log file permission with RotatingFileHandler erg 0 1,017 Aug-09-2023, 01:24 PM
Last Post: erg
  FileNotFoundError: [WinError 2] The system cannot find the file specified NewBiee 2 1,560 Jul-31-2023, 11:42 AM
Last Post: deanhystad
  How can I change the uuid name of a file to his original file? MaddoxMB 2 921 Jul-17-2023, 10:15 PM
Last Post: Pedroski55
  Change font in a list or tuple apffal 4 2,670 Jun-16-2023, 02:55 AM
Last Post: schriftartenio
  find random numbers that are = to the first 2 number of a list. Frankduc 23 3,186 Apr-05-2023, 07:36 PM
Last Post: Frankduc
  Cannot find py credentials file standenman 5 1,632 Feb-25-2023, 08:30 PM
Last Post: Jeff900
  unittest generates multiple files for each of my test case, how do I change to 1 file zsousa 0 955 Feb-15-2023, 05:34 PM
Last Post: zsousa

Forum Jump:

User Panel Messages

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