mirror of
https://github.com/NaiboWang/EasySpider.git
synced 2025-04-12 03:27:08 +08:00
7 lines
213 B
Python
7 lines
213 B
Python
import re
|
|
|
|
with open('src/taskGrid/FlowChart.js', 'r', encoding='utf-8') as file:
|
|
for line in file:
|
|
line = re.split('//', line)[0]
|
|
if re.search('[\u4e00-\u9fff]', line):
|
|
print(line) |