Guest User

Untitled

a guest
Aug 14th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. Regex: Lookahead and lookbehind, checking a . (dot) for use as decimal vs full-stop
  2. (?<![^d][\])[.](?![d])
  3.  
  4. (?<![\d]).(?=d)|(?<=[^D\]).(?!d)|(?<=[^d\]).(?!d)
Add Comment
Please, Sign In to add comment