Advertisement
westor

Untitled

May 25th, 2023
1,886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.70 KB | None | 0 0
  1. unicode.txt : https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
  2.  
  3. test 1:
  4.  
  5. //var %t = $ticks | var %r = $read(unicode.txt,nw,*10FFFD*) | echo -a > %r | echo is: $calc(($ticks - %t) / 1000)
  6.  
  7. adiirc result: 0.252
  8. mirc result: 0.531
  9.  
  10. test 2:
  11.  
  12. //var %t = $ticks | window -hj1000000 @testing | loadbuf @testing unicode.txt | var %r = $fline(@testing,*10FFFD*,1).text | window -c @testing | echo -a > %r | echo is: $calc(($ticks - %t) / 1000)
  13.  
  14. adiirc result: 0.517
  15. mirc result: 0.187
  16.  
  17. test 3:
  18.  
  19. //var %t = $ticks | .fopen test $qt(unicode.txt) | .fseek -w test *10FFFD* | echo -a > $fread(test) | .fclose test | echo is: $calc(($ticks - %t) / 1000)
  20.  
  21. adiirc result: 0.336
  22. mirc result: 0.688
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement