高手大哥,速来,急。。。
请问如何 用JS命令替换c:\\a.txt中的指定字符nihao为haha 并且保持为一个新的文件为c:\\b.txt
说明 c:\\a.txt里面有很多杂乱的代码,但是只有一处 nihao 字符
------解决方案--------------------
PHP code1 2 3 4 5 6 7 8 9 10 | $contents = file_get_contents ( "c:\\a.txt" );
if (! $contents )
exit ( "查查文件路径是否正确" );
$new_contents = str_replace ( "nihao" , "haha" , $contents );
file_put_contents ( "c:\\b.txt" , $new_contents ); <div class = "clear" >
</div>
|
로그인 후 복사