Skip to content

TableScriptingRowProcessor to support unicode  #25

Description

@JustCodeJJ

For TableScriptingRowProcessor.java

private static Pattern groovyFormPattern = Pattern
.compile("\$\[((.?)(@\w+).?)\]", Pattern.DOTALL | Pattern.MULTILINE);

we need to change this to

private static Pattern groovyFormPattern = Pattern
        .compile("\\$\\[((.*?)(@[\\w+\\W+][^.]*).*?)\\]", Pattern.DOTALL | Pattern.MULTILINE);

This will help in supporting the unicode names for the list.
Sample : $[@dgtag_test标签List.blahblah1]

Currently list comes as dgtag_testList

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions