做一个在电脑上运行的小工具

做一个能在电脑上运行的小程序
功能是删除指定文件里面的Z值,R值,Q值,F值,H值以及文件中包含G43的那一段和G00的那一段
文件格式是.NC
能用记事本打开,编码是ANSI
以上就这样

img

该回答引用gpt
以下是一个实现以上功能的Python程序,可以在电脑上运行:

import os

def delete_values(line):
    """
    删除一行中的 Z、R、Q、F、H 值以及包含 G43 和 G00 的部分
    """
    line = line.replace('Z', '').replace('R', '').replace('Q', '').replace('F', '').replace('H', '')
    if 'G43' in line or 'G00' in line:
        line = ''
    return line

def process_file(file_path):
    """
    处理一个指定路径的 NC 文件
    """
    try:
        with open(file_path, 'r', encoding='ansi') as f:
            lines = f.readlines()
    except FileNotFoundError:
        print(f'文件 "{file_path}" 不存在,请确认文件路径是否正确!')
        return
    except UnicodeDecodeError:
        print(f'文件 "{file_path}" 编码格式不是 ANSI,请确认文件编码是否正确!')
        return
    
    new_lines = [delete_values(line) for line in lines]
    
    try:
        with open(file_path, 'w', encoding='ansi') as f:
            f.writelines(new_lines)
        print(f'文件 "{file_path}" 处理完成!')
    except:
        print(f'文件 "{file_path}" 写入错误,请检查是否有相应的文件访问权限!')

if __name__ == '__main__':
    file_path = input('请输入需要处理的文件路径:')
    if os.path.isfile(file_path) and file_path.endswith('.NC'):
        process_file(file_path)
    else:
        print('您输入的路径不是一个有效的NC文件路径。')

使用方法:

1.将以上代码复制到文本编辑器中,保存为一个 .py 文件。

2.打开命令行终端(Windows下可以按Win+R,输入cmd后回车打开)。

3.进入保存了上述程序的文件所在目录。

4.在命令行中输入 python 文件名.py,其中 文件名 为你保存程序的文件名,回车执行。

5.程序会要求你输入需要处理的文件路径,输入一个有效的 .NC 文件路径后回车。

6.程序会自动处理文件,将处理结果保存在原文件中,完成后输出“处理完成!”提示。

注意事项:

1.执行前请备份原文件。

2.程序中删除的字符为硬编码,如果需要删除其他字符,请修改代码中的相应字符。

3.程序只会处理单个文件,如果需要处理多个文件,请编写循环处理的代码。

可以,你以文本格式贴出修改前后的文件,我用 C# 帮你写一个

直接python来个正则或者字符串提取就行了把

个人意见:用Python稍微好点

编写一个能在电脑上运行的小程序,用于删除指定文件中的特定内容。以下是一个使用 Python 编写的示例程序
引用c知道,如有帮助,望采纳
下面代码保存为一个 .py 文件,并将 file_path 替换为你要处理的文件路径。然后,运行该程序即可删除指定文件中的特定内容。请注意,这里假设文件编码为 ANSI,如果实际上是其他编码,请相应地更改代码中的 encoding 参数。

import os

def delete_specific_content(file_path):
    # 打开文件并读取内容
    with open(file_path, 'r', encoding='ANSI') as file:
        lines = file.readlines()

    # 删除特定内容
    new_lines = []
    delete_flag = False  # 标记是否需要删除当前行
    for line in lines:
        if 'G43' in line or 'G00' in line:
            delete_flag = True
        elif ('Z' in line or 'R' in line or 'Q' in line or 'F' in line or 'H' in line) and delete_flag:
            continue
        elif 'G' in line and '43' not in line and '00' not in line:
            delete_flag = False
        
        new_lines.append(line)

    # 将修改后的内容写回文件
    with open(file_path, 'w', encoding='ANSI') as file:
        file.writelines(new_lines)

    print("指定内容已成功删除!")

# 指定要处理的文件路径
file_path = 'path/to/your/file.NC'

# 调用函数进行处理
delete_specific_content(file_path)