Advertisement
Guest User

Untitled

a guest
Apr 17th, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.19 KB | None | 0 0
  1. tell application "TextEdit"
  2. activate
  3.  
  4. open file "Macintosh HD:Users:iljashebalin:Documents:TXT.txt"
  5. set MyDoc to text of document named "TXT.txt"
  6. #set visible of window 1 to false
  7.  
  8. set theParagraphs to paragraphs of MyDoc
  9. set GreekCharacterSet to {"α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ό", "о", "π", "ρ", "ς", "Ύ", "φ", "χ", "ψ", "ω"}
  10. set GreekYes to {}
  11. set GreekNo to {}
  12.  
  13. repeat with i from 1 to (count theParagraphs)
  14. set ParagraphCharacters to text items of paragraph i of MyDoc
  15. log "ParagraphCharacters:"
  16. log ParagraphCharacters
  17. repeat with item_ref in GreekCharacterSet
  18. set itemRef to item_ref as text
  19. if itemRef is in ParagraphCharacters then
  20. log "itemRef:"
  21. log itemRef
  22. repeat with j from 1 to (count ParagraphCharacters)
  23. if itemRef = item j of ParagraphCharacters then
  24. set end of GreekYes to itemRef
  25. log "GreekYes:"
  26. log GreekYes
  27. --set GreekCharactersCount to (count GreekYes)
  28. else
  29. set SupposedNonGreekCharacters to item j of ParagraphCharacters as text
  30. if SupposedNonGreekCharacters is not in {"\"", "”", " ", "(", ")", "-", "+", "=", "|", "{", "}", "°", "[", "]", "^", "/", "\\", "·", "$", "€", "‡", "±", "*", "<", ">", "≥", "≤", "≠", ":", ";", ".", ",", "⁄", "‹", "›", "—", "_", "?", "!", "«", "»", "", linefeed, "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"} then
  31. if SupposedNonGreekCharacters is not in GreekNo then set end of GreekNo to SupposedNonGreekCharacters
  32. set end of GreekNo to contents of item j of ParagraphCharacters
  33. log "GreekNo:"
  34. log GreekNo
  35. --set NonGreekCharactersCount to (count GreekNo)
  36. end if
  37. end if
  38. end repeat
  39. end if
  40. end repeat
  41. end repeat
  42. end tell
  43.  
  44. {GreekYes, linefeed, GreekNo}
  45.  
  46.  
  47. Result:
  48. tell application "TextEdit"
  49. activate
  50. open file "Macintosh HD:Users:iljashebalin:Documents:TXT.txt"
  51. --> document "TXT.txt"
  52. get every text of document "TXT.txt"
  53. --> "
  54.  
  55.  
  56.  
  57. Online File Sharing
  58. Easy Secure Business Collaboration 4 Stars by PC Magazine. Free Trial Go to egnyte.com/Free-Trial
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66. Ad closed by
  67. Report this adAdChoices
  68.  
  69. Ad covered content
  70. Not interested in this ad
  71. Ad was inappropriate
  72. Seen this ad multiple times
  73. We'll try not to show that ad again
  74.  
  75. Ad closed by
  76.  
  77. Advertisement
  78.  
  79.  
  80. Navigation
  81. • The /robots.txt
  82. • <META> tags
  83. • Frequently Asked Questions
  84. • Mailing list
  85. • Other Sites
  86. • About robotstxt.org
  87. Tools
  88. • /robots.txt checker
  89. • Robots Database
  90. • IP lookup
  91.  
  92. About /robots.txt
  93. In a nutshell
  94. Web site owners use the /robots.txt file to give instructions about their site to web robots; this is called The Robots Exclusion Protocol.
  95. It works likes this: a robot wants to vists a Web site URL, say http://www.example.com/welcome.html. Before it does so, it firsts checks for http://www.example.com/robots.txt, and finds:
  96. User-agent: *
  97. Disallow: /
  98. The \"User-agent: *\" means this section applies to all robots. The \"Disallow: /\" tells the robot that it should not visit any pages on the site.
  99. There are two important considerations when using /robots.txt:
  100. • robots can ignore your /robots.txt. Especially malware robots that scan the web for security vulnerabilities, and email address harvesters used by spammers will pay no attention.
  101. • the /robots.txt file is a publicly available file. Anyone can see what sections of your server you don't want robots to use.
  102. So don't try to use /robots.txt to hide information.
  103. See also:
  104. ◦ Can I block just bad robots?
  105. ◦ Why did this robot ignore my /robots.txt?
  106. ◦ What are the security implications of /robots.txt?
  107. The details
  108. The /robots.txt is a de-facto standard, and is not owned by any standards body. There are two historical descriptions:
  109. • the original 1994 A Standard for Robot Exclusion document.
  110. • a 1997 Internet Draft specification A Method for Web Robots Control
  111. In addition there are external resources:
  112. • HTML 4.01 specification, Appendix B.4.1
  113. • Wikipedia - Robots Exclusion Standard
  114. The /robots.txt standard is not actively developed. See What about further development of /robots.txt? for more discussion.
  115. The rest of this page gives an overview of how to use /robots.txt on your server, with some simple recipes. To learn more see also the FAQ.
  116. How to create a /robots.txt file
  117. Where to put it
  118. The short answer: in the top-level directory of your web server.
  119. The longer answer:
  120. When a robot looks for the \"/robots.txt\" file for URL, it strips the path component from the URL (everything from the first single slash), and puts \"/robots.txt\" in its place.
  121. For example, for \"http://www.example.com/shop/index.html, it will remove the \"/shop/index.html\", and replace it with \"/robots.txt\", and will end up with \"http://www.example.com/robots.txt\".
  122. So, as a web site owner you need to put it in the right place on your web server for that resulting URL to work. Usually that is the same place where you put your web site's main \"index.html\" welcome page. Where exactly that is, and how to put the file there, depends on your web server software.
  123. Remember to use all lower case for the filename: \"robots.txt\", not \"Robots.TXT.
  124. See also:
  125. ◦ What program should I use to create /robots.txt?
  126. ◦ How do I use /robots.txt on a virtual host?
  127. ◦ How do I use /robots.txt on a shared host?
  128. What to put in it
  129. The \"/robots.txt\" file is a text file, with one or more records. Usually contains a single record looking like this:
  130. User-agent: *
  131. Disallow: /cgi-bin/
  132. Disallow: /tmp/
  133. Disallow: /~joe/
  134. In this example, three directories are excluded.
  135. Note that you need a separate \"Disallow\" line for every URL prefix you want to exclude -- you cannot say \"Disallow: /cgi-bin/ /tmp/\" on a single line. Also, you may not have blank lines in a record, as they are used to delimit multiple records.
  136. Note also that globbing and regular expression are not supported in either the User-agent or Disallow lines. The '*' in the User-agent field is a special value meaning \"any robot\". Specifically, you cannot have lines like \"User-agent: *bot*\", \"Disallow: /tmp/*\" or \"Disallow: *.gif\".
  137. What you want to exclude depends on your server. Everything not explicitly disallowed is considered fair game to retrieve. Here follow some examples:
  138. To exclude all robots from the entire server
  139. User-agent: *
  140. Disallow: /
  141.  
  142. To allow all robots complete access
  143. User-agent: *
  144. Disallow:
  145. (or just create an empty \"/robots.txt\" file, or don't use one at all)
  146. To exclude all robots from part of the server
  147. User-agent: *
  148. Disallow: /cgi-bin/
  149. Disallow: /tmp/
  150. Disallow: /junk/
  151. To exclude a single robot
  152. User-agent: BadBot
  153. Disallow: /
  154. To allow a single robot
  155. User-agent: Google
  156. Disallow:
  157.  
  158. User-agent: *
  159. Disallow: /
  160. To exclude all files except one
  161. This is currently a bit awkward, as there is no \"Allow\" field. The easy way is to put all files to be disallowed into a separate directory, say \"stuff\", and leave the one file in the level above this directory:
  162. User-agent: *
  163. Disallow: /~joe/stuff/
  164. Alternatively you can explicitly disallow all disallowed pages:
  165. User-agent: *
  166. Disallow: /~joe/junk.html
  167. Disallow: /~joe/foo.html
  168. Disallow: /~joe/bar.html
  169. Advertisement
  170.  
  171. Online File Sharing
  172. Easy Secure Business Collaboration 4 Stars by PC Magazine. Free Trial Go to egnyte.com/Free-Trial
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180. Ad closed by
  181. Report this adAdChoices
  182.  
  183. Ad covered content
  184. Not interested in this ad
  185. Ad was inappropriate
  186. Seen this ad multiple times
  187. We'll try not to show that ad again
  188.  
  189. Ad closed by
  190. About this site | Privacy and cookies policy | Contact us | © 2007. All rights reserved.
  191. "
  192.  
  193.  
  194. (*ParagraphCharacters:*)
  195. (**)
  196. (*ParagraphCharacters:*)
  197. (**)
  198. (*ParagraphCharacters:*)
  199. (**)
  200. (*ParagraphCharacters:*)
  201. (**)
  202. (*ParagraphCharacters:*)
  203. (**)
  204. (*ParagraphCharacters:*)
  205. (**)
  206. (*ParagraphCharacters:*)
  207. (**)
  208. (*ParagraphCharacters:*)
  209. (**)
  210. (*ParagraphCharacters:*)
  211. (**)
  212. (*ParagraphCharacters:*)
  213. (* , *)
  214. (*ParagraphCharacters:*)
  215. (* , , O, n, l, i, n, e, , F, i, l, e, , S, h, a, r, i, n, g*)
  216. (*ParagraphCharacters:*)
  217. (* , , E, a, s, y, , S, e, c, u, r, e, , B, u, s, i, n, e, s, s, , C, o, l, l, a, b, o, r, a, t, i, o, n, , 4, , S, t, a, r, s, , b, y, , P, C, , M, a, g, a, z, i, n, e, ., , F, r, e, e, , T, r, i, a, l, , G, o, , t, o, , e, g, n, y, t, e, ., c, o, m, /, F, r, e, e, -, T, r, i, a, l*)
  218. (*ParagraphCharacters:*)
  219. (* , *)
  220. (*ParagraphCharacters:*)
  221. (**)
  222. (*ParagraphCharacters:*)
  223. (**)
  224. (*ParagraphCharacters:*)
  225. (**)
  226. (*ParagraphCharacters:*)
  227. (**)
  228. (*ParagraphCharacters:*)
  229. (**)
  230. (*ParagraphCharacters:*)
  231. (**)
  232. (*ParagraphCharacters:*)
  233. (*A, d, , c, l, o, s, e, d, , b, y, *)
  234. (*ParagraphCharacters:*)
  235. (*R, e, p, o, r, t, , t, h, i, s, , a, d, A, d, C, h, o, i, c, e, s,  *)
  236. (*ParagraphCharacters:*)
  237. (* *)
  238. (*ParagraphCharacters:*)
  239. (*A, d, , c, o, v, e, r, e, d, , c, o, n, t, e, n, t*)
  240. (*ParagraphCharacters:*)
  241. (*N, o, t, , i, n, t, e, r, e, s, t, e, d, , i, n, , t, h, i, s, , a, d*)
  242. (*ParagraphCharacters:*)
  243. (*A, d, , w, a, s, , i, n, a, p, p, r, o, p, r, i, a, t, e*)
  244. (*ParagraphCharacters:*)
  245. (*S, e, e, n, , t, h, i, s, , a, d, , m, u, l, t, i, p, l, e, , t, i, m, e, s*)
  246. (*ParagraphCharacters:*)
  247. (*W, e, ', l, l, , t, r, y, , n, o, t, , t, o, , s, h, o, w, , t, h, a, t, , a, d, , a, g, a, i, n*)
  248. (*ParagraphCharacters:*)
  249. (**)
  250. (*ParagraphCharacters:*)
  251. (*A, d, , c, l, o, s, e, d, , b, y, *)
  252. (*ParagraphCharacters:*)
  253. (**)
  254. (*ParagraphCharacters:*)
  255. (*A, d, v, e, r, t, i, s, e, m, e, n, t*)
  256. (*ParagraphCharacters:*)
  257. (**)
  258. (*ParagraphCharacters:*)
  259. (**)
  260. (*ParagraphCharacters:*)
  261. (*N, a, v, i, g, a, t, i, o, n*)
  262. (*ParagraphCharacters:*)
  263. (* , •, , T, h, e, , /, r, o, b, o, t, s, ., t, x, t*)
  264. (*ParagraphCharacters:*)
  265. (* , •, , <, M, E, T, A, >, , t, a, g, s*)
  266. (*ParagraphCharacters:*)
  267. (* , •, , F, r, e, q, u, e, n, t, l, y, , A, s, k, e, d, , Q, u, e, s, t, i, o, n, s*)
  268. (*ParagraphCharacters:*)
  269. (* , •, , M, a, i, l, i, n, g, , l, i, s, t*)
  270. (*ParagraphCharacters:*)
  271. (* , •, , O, t, h, e, r, , S, i, t, e, s*)
  272. (*ParagraphCharacters:*)
  273. (* , •, , A, b, o, u, t, , r, o, b, o, t, s, t, x, t, ., o, r, g*)
  274. (*ParagraphCharacters:*)
  275. (*T, o, o, l, s*)
  276. (*ParagraphCharacters:*)
  277. (* , •, , /, r, o, b, o, t, s, ., t, x, t, , c, h, e, c, k, e, r*)
  278. (*ParagraphCharacters:*)
  279. (* , •, , R, o, b, o, t, s, , D, a, t, a, b, a, s, e*)
  280. (*ParagraphCharacters:*)
  281. (* , •, , I, P, , l, o, o, k, u, p*)
  282. (*ParagraphCharacters:*)
  283. (**)
  284. (*ParagraphCharacters:*)
  285. (*A, b, o, u, t, , /, r, o, b, o, t, s, ., t, x, t*)
  286. (*ParagraphCharacters:*)
  287. (*I, n, , a, , n, u, t, s, h, e, l, l*)
  288. (*ParagraphCharacters:*)
  289. (*W, e, b, , s, i, t, e, , o, w, n, e, r, s, , u, s, e, , t, h, e, , /, r, o, b, o, t, s, ., t, x, t, , f, i, l, e, , t, o, , g, i, v, e, , i, n, s, t, r, u, c, t, i, o, n, s, , a, b, o, u, t, , t, h, e, i, r, , s, i, t, e, , t, o, , w, e, b, , r, o, b, o, t, s, ;, , t, h, i, s, , i, s, , c, a, l, l, e, d, , T, h, e, , R, o, b, o, t, s, , E, x, c, l, u, s, i, o, n, , P, r, o, t, o, c, o, l, .*)
  290. (*ParagraphCharacters:*)
  291. (*I, t, , w, o, r, k, s, , l, i, k, e, s, , t, h, i, s, :, , a, , r, o, b, o, t, , w, a, n, t, s, , t, o, , v, i, s, t, s, , a, , W, e, b, , s, i, t, e, , U, R, L, ,, , s, a, y, , h, t, t, p, :, /, /, w, w, w, ., e, x, a, m, p, l, e, ., c, o, m, /, w, e, l, c, o, m, e, ., h, t, m, l, ., , B, e, f, o, r, e, , i, t, , d, o, e, s, , s, o, ,, , i, t, , f, i, r, s, t, s, , c, h, e, c, k, s, , f, o, r, , h, t, t, p, :, /, /, w, w, w, ., e, x, a, m, p, l, e, ., c, o, m, /, r, o, b, o, t, s, ., t, x, t, ,, , a, n, d, , f, i, n, d, s, :*)
  292. (*ParagraphCharacters:*)
  293. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  294. (*ParagraphCharacters:*)
  295. (*D, i, s, a, l, l, o, w, :, , /*)
  296. (*ParagraphCharacters:*)
  297. (*T, h, e, , ", U, s, e, r, -, a, g, e, n, t, :, , *, ", , m, e, a, n, s, , t, h, i, s, , s, e, c, t, i, o, n, , a, p, p, l, i, e, s, , t, o, , a, l, l, , r, o, b, o, t, s, ., , T, h, e, , ", D, i, s, a, l, l, o, w, :, , /, ", , t, e, l, l, s, , t, h, e, , r, o, b, o, t, , t, h, a, t, , i, t, , s, h, o, u, l, d, , n, o, t, , v, i, s, i, t, , a, n, y, , p, a, g, e, s, , o, n, , t, h, e, , s, i, t, e, .*)
  298. (*ParagraphCharacters:*)
  299. (*T, h, e, r, e, , a, r, e, , t, w, o, , i, m, p, o, r, t, a, n, t, , c, o, n, s, i, d, e, r, a, t, i, o, n, s, , w, h, e, n, , u, s, i, n, g, , /, r, o, b, o, t, s, ., t, x, t, :*)
  300. (*ParagraphCharacters:*)
  301. (* , •, , r, o, b, o, t, s, , c, a, n, , i, g, n, o, r, e, , y, o, u, r, , /, r, o, b, o, t, s, ., t, x, t, ., , E, s, p, e, c, i, a, l, l, y, , m, a, l, w, a, r, e, , r, o, b, o, t, s, , t, h, a, t, , s, c, a, n, , t, h, e, , w, e, b, , f, o, r, , s, e, c, u, r, i, t, y, , v, u, l, n, e, r, a, b, i, l, i, t, i, e, s, ,, , a, n, d, , e, m, a, i, l, , a, d, d, r, e, s, s, , h, a, r, v, e, s, t, e, r, s, , u, s, e, d, , b, y, , s, p, a, m, m, e, r, s, , w, i, l, l, , p, a, y, , n, o, , a, t, t, e, n, t, i, o, n, .*)
  302. (*ParagraphCharacters:*)
  303. (* , •, , t, h, e, , /, r, o, b, o, t, s, ., t, x, t, , f, i, l, e, , i, s, , a, , p, u, b, l, i, c, l, y, , a, v, a, i, l, a, b, l, e, , f, i, l, e, ., , A, n, y, o, n, e, , c, a, n, , s, e, e, , w, h, a, t, , s, e, c, t, i, o, n, s, , o, f, , y, o, u, r, , s, e, r, v, e, r, , y, o, u, , d, o, n, ', t, , w, a, n, t, , r, o, b, o, t, s, , t, o, , u, s, e, .*)
  304. (*ParagraphCharacters:*)
  305. (*S, o, , d, o, n, ', t, , t, r, y, , t, o, , u, s, e, , /, r, o, b, o, t, s, ., t, x, t, , t, o, , h, i, d, e, , i, n, f, o, r, m, a, t, i, o, n, .*)
  306. (*ParagraphCharacters:*)
  307. (*S, e, e, , a, l, s, o, :*)
  308. (*ParagraphCharacters:*)
  309. (* , ◦, , C, a, n, , I, , b, l, o, c, k, , j, u, s, t, , b, a, d, , r, o, b, o, t, s, ?*)
  310. (*ParagraphCharacters:*)
  311. (* , ◦, , W, h, y, , d, i, d, , t, h, i, s, , r, o, b, o, t, , i, g, n, o, r, e, , m, y, , /, r, o, b, o, t, s, ., t, x, t, ?*)
  312. (*ParagraphCharacters:*)
  313. (* , ◦, , W, h, a, t, , a, r, e, , t, h, e, , s, e, c, u, r, i, t, y, , i, m, p, l, i, c, a, t, i, o, n, s, , o, f, , /, r, o, b, o, t, s, ., t, x, t, ?*)
  314. (*ParagraphCharacters:*)
  315. (*T, h, e, , d, e, t, a, i, l, s*)
  316. (*ParagraphCharacters:*)
  317. (*T, h, e, , /, r, o, b, o, t, s, ., t, x, t, , i, s, , a, , d, e, -, f, a, c, t, o, , s, t, a, n, d, a, r, d, ,, , a, n, d, , i, s, , n, o, t, , o, w, n, e, d, , b, y, , a, n, y, , s, t, a, n, d, a, r, d, s, , b, o, d, y, ., , T, h, e, r, e, , a, r, e, , t, w, o, , h, i, s, t, o, r, i, c, a, l, , d, e, s, c, r, i, p, t, i, o, n, s, :*)
  318. (*ParagraphCharacters:*)
  319. (* , •, , t, h, e, , o, r, i, g, i, n, a, l, , 1, 9, 9, 4, , A, , S, t, a, n, d, a, r, d, , f, o, r, , R, o, b, o, t, , E, x, c, l, u, s, i, o, n, , d, o, c, u, m, e, n, t, .*)
  320. (*ParagraphCharacters:*)
  321. (* , •, , a, , 1, 9, 9, 7, , I, n, t, e, r, n, e, t, , D, r, a, f, t, , s, p, e, c, i, f, i, c, a, t, i, o, n, , A, , M, e, t, h, o, d, , f, o, r, , W, e, b, , R, o, b, o, t, s, , C, o, n, t, r, o, l*)
  322. (*ParagraphCharacters:*)
  323. (*I, n, , a, d, d, i, t, i, o, n, , t, h, e, r, e, , a, r, e, , e, x, t, e, r, n, a, l, , r, e, s, o, u, r, c, e, s, :*)
  324. (*ParagraphCharacters:*)
  325. (* , •, , H, T, M, L, , 4, ., 0, 1, , s, p, e, c, i, f, i, c, a, t, i, o, n, ,, , A, p, p, e, n, d, i, x, , B, ., 4, ., 1*)
  326. (*ParagraphCharacters:*)
  327. (* , •, , W, i, k, i, p, e, d, i, a, , -, , R, o, b, o, t, s, , E, x, c, l, u, s, i, o, n, , S, t, a, n, d, a, r, d*)
  328. (*ParagraphCharacters:*)
  329. (*T, h, e, , /, r, o, b, o, t, s, ., t, x, t, , s, t, a, n, d, a, r, d, , i, s, , n, o, t, , a, c, t, i, v, e, l, y, , d, e, v, e, l, o, p, e, d, ., , S, e, e, , W, h, a, t, , a, b, o, u, t, , f, u, r, t, h, e, r, , d, e, v, e, l, o, p, m, e, n, t, , o, f, , /, r, o, b, o, t, s, ., t, x, t, ?, , f, o, r, , m, o, r, e, , d, i, s, c, u, s, s, i, o, n, .*)
  330. (*ParagraphCharacters:*)
  331. (*T, h, e, , r, e, s, t, , o, f, , t, h, i, s, , p, a, g, e, , g, i, v, e, s, , a, n, , o, v, e, r, v, i, e, w, , o, f, , h, o, w, , t, o, , u, s, e, , /, r, o, b, o, t, s, ., t, x, t, , o, n, , y, o, u, r, , s, e, r, v, e, r, ,, , w, i, t, h, , s, o, m, e, , s, i, m, p, l, e, , r, e, c, i, p, e, s, ., , T, o, , l, e, a, r, n, , m, o, r, e, , s, e, e, , a, l, s, o, , t, h, e, , F, A, Q, .*)
  332. (*ParagraphCharacters:*)
  333. (*H, o, w, , t, o, , c, r, e, a, t, e, , a, , /, r, o, b, o, t, s, ., t, x, t, , f, i, l, e*)
  334. (*ParagraphCharacters:*)
  335. (*W, h, e, r, e, , t, o, , p, u, t, , i, t*)
  336. (*ParagraphCharacters:*)
  337. (*T, h, e, , s, h, o, r, t, , a, n, s, w, e, r, :, , i, n, , t, h, e, , t, o, p, -, l, e, v, e, l, , d, i, r, e, c, t, o, r, y, , o, f, , y, o, u, r, , w, e, b, , s, e, r, v, e, r, .*)
  338. (*ParagraphCharacters:*)
  339. (*T, h, e, , l, o, n, g, e, r, , a, n, s, w, e, r, :*)
  340. (*ParagraphCharacters:*)
  341. (*W, h, e, n, , a, , r, o, b, o, t, , l, o, o, k, s, , f, o, r, , t, h, e, , ", /, r, o, b, o, t, s, ., t, x, t, ", , f, i, l, e, , f, o, r, , U, R, L, ,, , i, t, , s, t, r, i, p, s, , t, h, e, , p, a, t, h, , c, o, m, p, o, n, e, n, t, , f, r, o, m, , t, h, e, , U, R, L, , (, e, v, e, r, y, t, h, i, n, g, , f, r, o, m, , t, h, e, , f, i, r, s, t, , s, i, n, g, l, e, , s, l, a, s, h, ), ,, , a, n, d, , p, u, t, s, , ", /, r, o, b, o, t, s, ., t, x, t, ", , i, n, , i, t, s, , p, l, a, c, e, .*)
  342. (*ParagraphCharacters:*)
  343. (*F, o, r, , e, x, a, m, p, l, e, ,, , f, o, r, , ", h, t, t, p, :, /, /, w, w, w, ., e, x, a, m, p, l, e, ., c, o, m, /, s, h, o, p, /, i, n, d, e, x, ., h, t, m, l, ,, , i, t, , w, i, l, l, , r, e, m, o, v, e, , t, h, e, , ", /, s, h, o, p, /, i, n, d, e, x, ., h, t, m, l, ", ,, , a, n, d, , r, e, p, l, a, c, e, , i, t, , w, i, t, h, , ", /, r, o, b, o, t, s, ., t, x, t, ", ,, , a, n, d, , w, i, l, l, , e, n, d, , u, p, , w, i, t, h, , ", h, t, t, p, :, /, /, w, w, w, ., e, x, a, m, p, l, e, ., c, o, m, /, r, o, b, o, t, s, ., t, x, t, ", .*)
  344. (*ParagraphCharacters:*)
  345. (*S, o, ,, , a, s, , a, , w, e, b, , s, i, t, e, , o, w, n, e, r, , y, o, u, , n, e, e, d, , t, o, , p, u, t, , i, t, , i, n, , t, h, e, , r, i, g, h, t, , p, l, a, c, e, , o, n, , y, o, u, r, , w, e, b, , s, e, r, v, e, r, , f, o, r, , t, h, a, t, , r, e, s, u, l, t, i, n, g, , U, R, L, , t, o, , w, o, r, k, ., , U, s, u, a, l, l, y, , t, h, a, t, , i, s, , t, h, e, , s, a, m, e, , p, l, a, c, e, , w, h, e, r, e, , y, o, u, , p, u, t, , y, o, u, r, , w, e, b, , s, i, t, e, ', s, , m, a, i, n, , ", i, n, d, e, x, ., h, t, m, l, ", , w, e, l, c, o, m, e, , p, a, g, e, ., , W, h, e, r, e, , e, x, a, c, t, l, y, , t, h, a, t, , i, s, ,, , a, n, d, , h, o, w, , t, o, , p, u, t, , t, h, e, , f, i, l, e, , t, h, e, r, e, ,, , d, e, p, e, n, d, s, , o, n, , y, o, u, r, , w, e, b, , s, e, r, v, e, r, , s, o, f, t, w, a, r, e, .*)
  346. (*ParagraphCharacters:*)
  347. (*R, e, m, e, m, b, e, r, , t, o, , u, s, e, , a, l, l, , l, o, w, e, r, , c, a, s, e, , f, o, r, , t, h, e, , f, i, l, e, n, a, m, e, :, , ", r, o, b, o, t, s, ., t, x, t, ", ,, , n, o, t, , ", R, o, b, o, t, s, ., T, X, T, .*)
  348. (*ParagraphCharacters:*)
  349. (*S, e, e, , a, l, s, o, :*)
  350. (*ParagraphCharacters:*)
  351. (* , ◦, , W, h, a, t, , p, r, o, g, r, a, m, , s, h, o, u, l, d, , I, , u, s, e, , t, o, , c, r, e, a, t, e, , /, r, o, b, o, t, s, ., t, x, t, ?*)
  352. (*ParagraphCharacters:*)
  353. (* , ◦, , H, o, w, , d, o, , I, , u, s, e, , /, r, o, b, o, t, s, ., t, x, t, , o, n, , a, , v, i, r, t, u, a, l, , h, o, s, t, ?*)
  354. (*ParagraphCharacters:*)
  355. (* , ◦, , H, o, w, , d, o, , I, , u, s, e, , /, r, o, b, o, t, s, ., t, x, t, , o, n, , a, , s, h, a, r, e, d, , h, o, s, t, ?*)
  356. (*ParagraphCharacters:*)
  357. (*W, h, a, t, , t, o, , p, u, t, , i, n, , i, t*)
  358. (*ParagraphCharacters:*)
  359. (*T, h, e, , ", /, r, o, b, o, t, s, ., t, x, t, ", , f, i, l, e, , i, s, , a, , t, e, x, t, , f, i, l, e, ,, , w, i, t, h, , o, n, e, , o, r, , m, o, r, e, , r, e, c, o, r, d, s, ., , U, s, u, a, l, l, y, , c, o, n, t, a, i, n, s, , a, , s, i, n, g, l, e, , r, e, c, o, r, d, , l, o, o, k, i, n, g, , l, i, k, e, , t, h, i, s, :*)
  360. (*ParagraphCharacters:*)
  361. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  362. (*ParagraphCharacters:*)
  363. (*D, i, s, a, l, l, o, w, :, , /, c, g, i, -, b, i, n, /*)
  364. (*ParagraphCharacters:*)
  365. (*D, i, s, a, l, l, o, w, :, , /, t, m, p, /*)
  366. (*ParagraphCharacters:*)
  367. (*D, i, s, a, l, l, o, w, :, , /, ~, j, o, e, /*)
  368. (*ParagraphCharacters:*)
  369. (*I, n, , t, h, i, s, , e, x, a, m, p, l, e, ,, , t, h, r, e, e, , d, i, r, e, c, t, o, r, i, e, s, , a, r, e, , e, x, c, l, u, d, e, d, .*)
  370. (*ParagraphCharacters:*)
  371. (*N, o, t, e, , t, h, a, t, , y, o, u, , n, e, e, d, , a, , s, e, p, a, r, a, t, e, , ", D, i, s, a, l, l, o, w, ", , l, i, n, e, , f, o, r, , e, v, e, r, y, , U, R, L, , p, r, e, f, i, x, , y, o, u, , w, a, n, t, , t, o, , e, x, c, l, u, d, e, , -, -, , y, o, u, , c, a, n, n, o, t, , s, a, y, , ", D, i, s, a, l, l, o, w, :, , /, c, g, i, -, b, i, n, /, , /, t, m, p, /, ", , o, n, , a, , s, i, n, g, l, e, , l, i, n, e, ., , A, l, s, o, ,, , y, o, u, , m, a, y, , n, o, t, , h, a, v, e, , b, l, a, n, k, , l, i, n, e, s, , i, n, , a, , r, e, c, o, r, d, ,, , a, s, , t, h, e, y, , a, r, e, , u, s, e, d, , t, o, , d, e, l, i, m, i, t, , m, u, l, t, i, p, l, e, , r, e, c, o, r, d, s, .*)
  372. (*ParagraphCharacters:*)
  373. (*N, o, t, e, , a, l, s, o, , t, h, a, t, , g, l, o, b, b, i, n, g, , a, n, d, , r, e, g, u, l, a, r, , e, x, p, r, e, s, s, i, o, n, , a, r, e, , n, o, t, , s, u, p, p, o, r, t, e, d, , i, n, , e, i, t, h, e, r, , t, h, e, , U, s, e, r, -, a, g, e, n, t, , o, r, , D, i, s, a, l, l, o, w, , l, i, n, e, s, ., , T, h, e, , ', *, ', , i, n, , t, h, e, , U, s, e, r, -, a, g, e, n, t, , f, i, e, l, d, , i, s, , a, , s, p, e, c, i, a, l, , v, a, l, u, e, , m, e, a, n, i, n, g, , ", a, n, y, , r, o, b, o, t, ", ., , S, p, e, c, i, f, i, c, a, l, l, y, ,, , y, o, u, , c, a, n, n, o, t, , h, a, v, e, , l, i, n, e, s, , l, i, k, e, , ", U, s, e, r, -, a, g, e, n, t, :, , *, b, o, t, *, ", ,, , ", D, i, s, a, l, l, o, w, :, , /, t, m, p, /, *, ", , o, r, , ", D, i, s, a, l, l, o, w, :, , *, ., g, i, f, ", .*)
  374. (*ParagraphCharacters:*)
  375. (*W, h, a, t, , y, o, u, , w, a, n, t, , t, o, , e, x, c, l, u, d, e, , d, e, p, e, n, d, s, , o, n, , y, o, u, r, , s, e, r, v, e, r, ., , E, v, e, r, y, t, h, i, n, g, , n, o, t, , e, x, p, l, i, c, i, t, l, y, , d, i, s, a, l, l, o, w, e, d, , i, s, , c, o, n, s, i, d, e, r, e, d, , f, a, i, r, , g, a, m, e, , t, o, , r, e, t, r, i, e, v, e, ., , H, e, r, e, , f, o, l, l, o, w, , s, o, m, e, , e, x, a, m, p, l, e, s, :*)
  376. (*ParagraphCharacters:*)
  377. (*T, o, , e, x, c, l, u, d, e, , a, l, l, , r, o, b, o, t, s, , f, r, o, m, , t, h, e, , e, n, t, i, r, e, , s, e, r, v, e, r*)
  378. (*ParagraphCharacters:*)
  379. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  380. (*ParagraphCharacters:*)
  381. (*D, i, s, a, l, l, o, w, :, , /*)
  382. (*ParagraphCharacters:*)
  383. (**)
  384. (*ParagraphCharacters:*)
  385. (*T, o, , a, l, l, o, w, , a, l, l, , r, o, b, o, t, s, , c, o, m, p, l, e, t, e, , a, c, c, e, s, s*)
  386. (*ParagraphCharacters:*)
  387. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  388. (*ParagraphCharacters:*)
  389. (*D, i, s, a, l, l, o, w, :*)
  390. (*ParagraphCharacters:*)
  391. (*(, o, r, , j, u, s, t, , c, r, e, a, t, e, , a, n, , e, m, p, t, y, , ", /, r, o, b, o, t, s, ., t, x, t, ", , f, i, l, e, ,, , o, r, , d, o, n, ', t, , u, s, e, , o, n, e, , a, t, , a, l, l, )*)
  392. (*ParagraphCharacters:*)
  393. (*T, o, , e, x, c, l, u, d, e, , a, l, l, , r, o, b, o, t, s, , f, r, o, m, , p, a, r, t, , o, f, , t, h, e, , s, e, r, v, e, r*)
  394. (*ParagraphCharacters:*)
  395. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  396. (*ParagraphCharacters:*)
  397. (*D, i, s, a, l, l, o, w, :, , /, c, g, i, -, b, i, n, /*)
  398. (*ParagraphCharacters:*)
  399. (*D, i, s, a, l, l, o, w, :, , /, t, m, p, /*)
  400. (*ParagraphCharacters:*)
  401. (*D, i, s, a, l, l, o, w, :, , /, j, u, n, k, /*)
  402. (*ParagraphCharacters:*)
  403. (*T, o, , e, x, c, l, u, d, e, , a, , s, i, n, g, l, e, , r, o, b, o, t*)
  404. (*ParagraphCharacters:*)
  405. (*U, s, e, r, -, a, g, e, n, t, :, , B, a, d, B, o, t*)
  406. (*ParagraphCharacters:*)
  407. (*D, i, s, a, l, l, o, w, :, , /*)
  408. (*ParagraphCharacters:*)
  409. (*T, o, , a, l, l, o, w, , a, , s, i, n, g, l, e, , r, o, b, o, t*)
  410. (*ParagraphCharacters:*)
  411. (*U, s, e, r, -, a, g, e, n, t, :, , G, o, o, g, l, e*)
  412. (*ParagraphCharacters:*)
  413. (*D, i, s, a, l, l, o, w, :*)
  414. (*ParagraphCharacters:*)
  415. (**)
  416. (*ParagraphCharacters:*)
  417. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  418. (*ParagraphCharacters:*)
  419. (*D, i, s, a, l, l, o, w, :, , /*)
  420. (*ParagraphCharacters:*)
  421. (*T, o, , e, x, c, l, u, d, e, , a, l, l, , f, i, l, e, s, , e, x, c, e, p, t, , o, n, e*)
  422. (*ParagraphCharacters:*)
  423. (*T, h, i, s, , i, s, , c, u, r, r, e, n, t, l, y, , a, , b, i, t, , a, w, k, w, a, r, d, ,, , a, s, , t, h, e, r, e, , i, s, , n, o, , ", A, l, l, o, w, ", , f, i, e, l, d, ., , T, h, e, , e, a, s, y, , w, a, y, , i, s, , t, o, , p, u, t, , a, l, l, , f, i, l, e, s, , t, o, , b, e, , d, i, s, a, l, l, o, w, e, d, , i, n, t, o, , a, , s, e, p, a, r, a, t, e, , d, i, r, e, c, t, o, r, y, ,, , s, a, y, , ", s, t, u, f, f, ", ,, , a, n, d, , l, e, a, v, e, , t, h, e, , o, n, e, , f, i, l, e, , i, n, , t, h, e, , l, e, v, e, l, , a, b, o, v, e, , t, h, i, s, , d, i, r, e, c, t, o, r, y, :*)
  424. (*ParagraphCharacters:*)
  425. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  426. (*ParagraphCharacters:*)
  427. (*D, i, s, a, l, l, o, w, :, , /, ~, j, o, e, /, s, t, u, f, f, /*)
  428. (*ParagraphCharacters:*)
  429. (*A, l, t, e, r, n, a, t, i, v, e, l, y, , y, o, u, , c, a, n, , e, x, p, l, i, c, i, t, l, y, , d, i, s, a, l, l, o, w, , a, l, l, , d, i, s, a, l, l, o, w, e, d, , p, a, g, e, s, :*)
  430. (*ParagraphCharacters:*)
  431. (*U, s, e, r, -, a, g, e, n, t, :, , **)
  432. (*ParagraphCharacters:*)
  433. (*D, i, s, a, l, l, o, w, :, , /, ~, j, o, e, /, j, u, n, k, ., h, t, m, l*)
  434. (*ParagraphCharacters:*)
  435. (*D, i, s, a, l, l, o, w, :, , /, ~, j, o, e, /, f, o, o, ., h, t, m, l*)
  436. (*ParagraphCharacters:*)
  437. (*D, i, s, a, l, l, o, w, :, , /, ~, j, o, e, /, b, a, r, ., h, t, m, l*)
  438. (*ParagraphCharacters:*)
  439. (*A, d, v, e, r, t, i, s, e, m, e, n, t*)
  440. (*ParagraphCharacters:*)
  441. (* , *)
  442. (*ParagraphCharacters:*)
  443. (* , , O, n, l, i, n, e, , F, i, l, e, , S, h, a, r, i, n, g*)
  444. (*ParagraphCharacters:*)
  445. (* , , E, a, s, y, , S, e, c, u, r, e, , B, u, s, i, n, e, s, s, , C, o, l, l, a, b, o, r, a, t, i, o, n, , 4, , S, t, a, r, s, , b, y, , P, C, , M, a, g, a, z, i, n, e, ., , F, r, e, e, , T, r, i, a, l, , G, o, , t, o, , e, g, n, y, t, e, ., c, o, m, /, F, r, e, e, -, T, r, i, a, l*)
  446. (*ParagraphCharacters:*)
  447. (* , *)
  448. (*ParagraphCharacters:*)
  449. (**)
  450. (*ParagraphCharacters:*)
  451. (**)
  452. (*ParagraphCharacters:*)
  453. (**)
  454. (*ParagraphCharacters:*)
  455. (**)
  456. (*ParagraphCharacters:*)
  457. (**)
  458. (*ParagraphCharacters:*)
  459. (**)
  460. (*ParagraphCharacters:*)
  461. (*A, d, , c, l, o, s, e, d, , b, y, *)
  462. (*ParagraphCharacters:*)
  463. (*R, e, p, o, r, t, , t, h, i, s, , a, d, A, d, C, h, o, i, c, e, s,  *)
  464. (*ParagraphCharacters:*)
  465. (* *)
  466. (*ParagraphCharacters:*)
  467. (*A, d, , c, o, v, e, r, e, d, , c, o, n, t, e, n, t*)
  468. (*ParagraphCharacters:*)
  469. (*N, o, t, , i, n, t, e, r, e, s, t, e, d, , i, n, , t, h, i, s, , a, d*)
  470. (*ParagraphCharacters:*)
  471. (*A, d, , w, a, s, , i, n, a, p, p, r, o, p, r, i, a, t, e*)
  472. (*ParagraphCharacters:*)
  473. (*S, e, e, n, , t, h, i, s, , a, d, , m, u, l, t, i, p, l, e, , t, i, m, e, s*)
  474. (*ParagraphCharacters:*)
  475. (*W, e, ', l, l, , t, r, y, , n, o, t, , t, o, , s, h, o, w, , t, h, a, t, , a, d, , a, g, a, i, n*)
  476. (*ParagraphCharacters:*)
  477. (**)
  478. (*ParagraphCharacters:*)
  479. (*A, d, , c, l, o, s, e, d, , b, y, *)
  480. (*ParagraphCharacters:*)
  481. (*A, b, o, u, t, , t, h, i, s, , s, i, t, e, , |, , P, r, i, v, a, c, y, , a, n, d, , c, o, o, k, i, e, s, , p, o, l, i, c, y, , |, , C, o, n, t, a, c, t, , u, s, , |, , ©, , 2, 0, 0, 7, ., , A, l, l, , r, i, g, h, t, s, , r, e, s, e, r, v, e, d, .*)
  482. (*ParagraphCharacters:*)
  483. (**)
  484.  
  485. end tell
  486.  
  487. Result:
  488. {{}, "
  489. ", {}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement