我有一个超过100k行的文件,它在每行中包含"122345",形式的数据,但我需要整数而不是字符串,最好的方法是什么
"122345",
使用powershell:
get-content <file path>|foreach-object{$_-replace'"',''}|set-content <file_destination>