fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5.  
  6. Dim s, result As String
  7. Dim r As RegularExpressions.Regex
  8.  
  9. s = "aaa[bbbb]ccc"
  10. r = New RegularExpressions.Regex("\[([^\]]*)\]")
  11.  
  12. End Sub
  13. End Class
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Visual Basic.Net Compiler version 0.0.0.5943 (Mono 3.8 - tarball)
Copyright (C) 2004-2010 Rolf Bjarne Kvinge. All rights reserved.

/home/py98bO/prog.vb (7,32) : error VBNC30451: 'RegularExpressions' is not declared. It may be inaccessible due to its protection level.
/home/py98bO/prog.vb (12,1) : error VBNC30451: 'RegularExpressions' is not declared. It may be inaccessible due to its protection level.
There were 2 errors and 0 warnings.
Compilation took 00:00:00.7581240
stdout
Standard output is empty