ro  fr  en  es  pt  ar  zh  hi  de  ru
ART 2.0 ART 3.0 ART 4.0 ART 5.0 ART 6.0 Pinterest

Ahoana ny fomba fitomboan'ny isa ao amin'ny python amin'ny rakitra marobe

On March 10, 2022, in Leadership Quantum-XX, by Neculai Fantanaru

Azonao atao ny mijery ny kaody feno:Https: // passatin.com / 2wk5d6 sy i

hametrakaPython. Avy eo, apetraho ireto tranomboky roa ireto amin'ny alàlan'ny mpandika teny (cmd) amin'ny Windows10:

I have multiple html files in C: Folder1. I have this structure that is repeated in each html files:.

$item_id = abc;

After running .py I will get:

In file 1.html I will have $item_id = 1;
In file 2.html I will have $item_id = 2;
In file 3.html I will have $item_id = 3;
...
In file 2300.html I will have $item_id = 2300;

CODE: Copy ary ampandehano ny kaody eto ambany amin'ny programa mpandika teny rehetra(Ampiasaikopycripter.Aza adino ny hanova ny lalana ao amin'ny "mitombo_fisiere_html"Andalana.

import os
import re

def read_text_from_file(file_path):
    """
    Aceasta functie returneaza continutul unui fisier.
    file_path: calea catre fisierul din care vrei sa citesti
    """
    with open(file_path, encoding='utf8') as f:
        text = f.read()
        return text


def write_to_file(text, file_path):
    """
    Aceasta functie scrie un text intr-un fisier.
    text: textul pe care vrei sa il scrii
    file_path: calea catre fisierul in care vrei sa scrii
    """
    with open(file_path, 'wb') as f:
        f.write(text.encode('utf8', 'ignore'))

def incrementare_fisiere_html(cale_folder_html):
    """
    Functia itereaza printr-un folder care contine fisiere html si adauga index-ul corespunzator in fiecare fisier
    """
    count = 0
    current_id = 1
    for f in os.listdir(cale_folder_html):
            if f.endswith('.html'):
                cale_fisier_html = cale_folder_html + "\\" + f
                html_text = read_text_from_file(cale_fisier_html)
                item_id_pattern = re.compile('\$item_id = (.*?);')
                item_id = re.findall(item_id_pattern, html_text)
                if len(item_id) > 0:
                    print("{} a fost modificat. ".format(f))
                    item_id = item_id[0]
                    html_text = html_text.replace(item_id, str(current_id))
                    current_id += 1
                    count += 1
                    write_to_file(html_text, cale_fisier_html)
                else:
                    # print("{} nu are $item_id.".format(f))
                    continue
            else:
                continue
    print("Numarul de fisiere modificate: ", count)

if __name__ == '__main__':
    # sa pui calea catre folderul cu fisiere
    incrementare_fisiere_html('e:\\Folder1')

That's all folks.

If you like my code, then make me a favor: SHARE IT.

Kaody python hafa: BeautifulSoup na Google Translate API Key naVersion 3naVersion 4naVersion 5


Latest articles accessed by readers:

  1. An Eye To See And A Mind To Understand
  2. Turn Towards Me With An Eye Full Of Your Own Gaze
  3. The Snapshot Of Magic In God's Universe
  4. Rhythm Of My Heart

Donate via Paypal

Alternate Text

RECURRENT DONATION

Donate monthly to support
the NeculaiFantanaru.com project

SINGLE DONATION

Donate the desired amount to support
the NeculaiFantanaru.com project

Donate by Bank Transfer

Account Ron: RO34INGB0000999900448439

Open account at ING Bank

Join The Neculai Fantanaru Community



* Note: If you want to read all my articles in real time, please check the romanian version !

decoration
About | Site Map | Partners | Feedback | Terms & Conditions | Privacy | RSS Feeds
© Neculai Fântânaru - All rights reserved