Guest User

Untitled

a guest
Apr 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. begin
  2. words1 = find '[A-Z a-z 0-9]* ' in "file1.txt" // get all tokens matching pattern from file1
  3. words2 = find '[A-Z a-z 0-9]* ' in "file2.txt"
  4.  
  5. print (words1 inters words2); // print the tokens they have in common
  6. end
Add Comment
Please, Sign In to add comment