Advertisement
12Me21

paste

Feb 22nd, 2017
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ( TEST( A()(B(C))) () )
  2.  
  3. ([A-Z_][A-Z0-9_]*[$#%]?[ \t]*(?:\[\])?|".*?"|@[A-Z0-9_]+|)[ \t]*{(.*?):(.*?)}?
  4. [A-Za-z0-9_]+[$#%]? *(?:\[\])? *{.*?:.*?}
  5. A${B:C} -> GETRANGE(A,B,C) -> MID$(A,B,C-B) or GETBITS(A,B,C-B)
  6. A7$[2]{B:C}
  7. "ABC"{B:C}
  8. @ABC{B:C}
  9. 6{B:C}
  10.  
  11. ***
  12. ([A-Z_][A-Z0-9_]*[$#%]?|".*?"|@[A-Z0-9_]+)[ \t]*{(.*?):(.*?)}
  13.  
  14.  
  15. if A-Za-z_
  16. eat following A-Za-z0-9_
  17. eat $#%
  18. eat [...]
  19.  
  20. ([A-Z_][A-Z0-9_]*[$#%]?[ \t]*(?:\[\])?)[ \t]*{(.*?):(.*?)}[ \t]*=
  21. A{B:C}= -> SETRANGE A,B,C, -> SUBSTR$ A,B,C-B, or SETBITS A,B,C-B,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement