Guest User

Untitled

a guest
May 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. {"type":"4","Record channels HDCVI":{"1":"4","3":"16"},
  2. "Supported standarts HDCVI DVR":{"0":"HDCVI","2":"IP","3":"AHD","4":"Analog"},
  3. "Record resolution HDCVI DVR":{"1":"FullHD 1080p"},
  4. "HDD amount":{"1":"2","2":"4"},
  5. "Specs HDCVI DVR":{"0":"2x HDMI","1":"TV-out","2":"Videoanalytics","3":"eSATA","5":"RS-485"}}
  6.  
  7. "Record channels HDCVI":{" ... :"4" ... "}
  8.  
  9. /Record channels HDCVI.+"4"}/g
  10.  
  11. SELECT * WHERE field REGEXP '"Record channels HDCVI":{[^}]*"4"';
  12.  
  13. { -- match the opening brace
  14. [^}]* -- match 0 or more characters that are not a closing brace
  15. "4" -- match literal "4"
Add Comment
Please, Sign In to add comment