May 11, 20168 yr uz pomoć rxjs sa varanjem™ (ko će da se bakće sa I/O :D ) Rx.Observable .range(1000, 2501) .map(x => 'ppp' + x.toString() + '.html') .subscribe(function(x) { console.log(x); });
May 11, 20168 yr pa ako već hoćete, evo vam i VBS... Najnezgrapniji od svih ... outFile="file.txt"Set objFSO = CreateObject("Scripting.FileSystemObject")Set objFile = objFSO.CreateTextFile(outFile,True)for i = 1000 to 2500objFile.Write "ppp/programiranje/" & i & ".html" & vbCrLfnextobjFile.Close
May 11, 20168 yr uz pomoć rxjs sa varanjem™ (ko će da se bakće sa I/O :D ) Rx.Observable .range(1000, 2501) .map(x => 'ppp' + x.toString() + '.html') .subscribe(function(x) { console.log(x); }); Vrlo elegantno resenje :D
May 11, 20168 yr Ako se igramo ruznog, evo i ove male nakazice koja mi je donosila leba na sto toliko dugo da sam je zavoleo kao sto majka zavoli ruzno dete Objective C, pogledajte mu samo kako radi sa stringovima, kao da se radi o najegzoticnijoj stvari u svemiru :D : [[NSFileManager defaultManager] createFileAtPath:@"fajl.txt" contents:nil attributes:nil]; NSString* str = @""; for(int i=1000; i<=2500; i++) { str = [str stringByAppendingFormat:@"ppp/programiranje/%d.htm\n", i]; } [str writeToFile:@"fajl.txt" atomically:YES encoding:NSUTF8StringEncoding error:nil];
May 11, 20168 yr <?php $myfile = fopen("tekst.txt","w") for($i=1000;$i<=2500;$i++) { $str = "/ppp/programiranje/".$i."html\n"; fwrite($myfile, $str); } ?>
May 11, 20168 yr Ako ćemo egzotiku... Edit: REXX na z/OS "ALLOC DA('IME.FAJLA') FI(IZLAZ) NEW" DO I = 1000 TO 2500 QUEUE '/ppp/programiranje/'I'.html' END "EXECIO * DISKW IZLAZ (FINIS" "FREE FI(IZLAZ)" Edited May 11, 20168 yr by Velocipede
May 11, 20168 yr <?php $myfile = fopen("tekst.txt","w") for($i=1000;$i<=2500;$i++) { $str = "/ppp/programiranje/".$i."html\n"; fwrite($myfile, $str); } ?> PHP u ovom konkretnom problemu zacujuce neodvratan :D
Create an account or sign in to comment