| 发表于:2007-03-29 12:37:54 楼主 |
要将 [01:43.59]see the pretty people play [01:48.02]hurrying under the light, 中的时间去掉,下面是我编的不知道是那个地方错了。。。 //import java.util.regex.*; import java.util.*; import java.io.*; public class replace{ public static string readfile(string s)throws exception{ string backtext=null; string temp; bufferedreader br=new bufferedreader( new filereader(s)); while((temp=br.readline())!=null){ backtext+=temp; backtext+= "\n "; } //system.out.println(backtext); return backtext; } public static void main(string[] args)throws exception{ string fromtext=readfile(args[0]); //matcher m=pattern.compile( "[.*] ").matcher(s); fromtext=fromtext.replaceall( "/[.*]/ ", " "); printwriter pw=new printwriter(new filewriter( "c:\\outputfile.txt ")); pw.println(fromtext); pw.close(); } } |
|
|
|
|