是否有解析器或“从字符串到对象”类的SHORT_PREFIX_STYLE字符串格式?

时间:2019-02-01 14:25:43

标签: java string apache parsing

我有一个由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

0 个答案:

没有答案