我有一个由ReflectionToStringBuilder apache类制成的ToStringStyle.SHORT_PREFIX_STYLE格式的文件,需要重新制作对象...在该文件中,我还有其他嵌套的对象...您知道解析它的方法还是一种获取方法返回对象?
这段代码是一个示例。.不知道我在哪里做的超级真实... 它由House对象组成,但House也包含HouseKind和KeyValue类型对象。
Try
Dim RegexObj As New Regex("[^()]+", RegexOptions.IgnoreCase)
Dim MatchResults As Match = RegexObj.Match(SubjectString)
While MatchResults.Success
' matched text: MatchResults.Value
' match start: MatchResults.Index
' match length: MatchResults.Length
MatchResults = MatchResults.NextMatch()
End While
Catch ex As ArgumentException
'Syntax error in the regular expression
End Try