Advertisement
Guest User

Untitled

a guest
Apr 12th, 2019
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. regex_SC = CreateRegularExpression(#PB_Any, "^[\t]*[\ ]*EnablePbCgi([\s\S]*?)\(([\s\S]*?)^[\s]*DisablePbCgi", #PB_RegularExpression_MultiLine | #PB_RegularExpression_NoCase)  
  2.  
  3. content.s = "EnablePbCgi" + #CRLF$ +
  4.             ~"()\"🔒\"" + #CRLF$ +
  5.             "DisablePbCgi"
  6.  
  7. Debug StringByteLength(content)
  8. ShowMemoryViewer(@content, StringByteLength(content))
  9. CallDebugger
  10.  
  11. ExamineRegularExpression(regex_SC, content)
  12.  
  13. If NextRegularExpressionMatch(regex_SC)
  14.    
  15.  Debug RegularExpressionMatchString(regex_SC)
  16.    
  17. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement