[ https://issues.apache.org/jira/browse/SOLR-1061?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Noble Paul updated SOLR-1061: ----------------------------- Description: example {code:xml} <field column="full_name" regex="Mr(\w*)\b(\w*)" groupNames="firstName,secondName"/> {code} This is more efficient in extracting multiple values from a single String. In this case the column is redundant but it is ok was: example {code:xml} <field column="doesnotmatter" regex="Mr(\w*)\b(\w*)" sourceColName="full_name" groupNames="1:firstName,2:secondName"/> {code} This is more efficient in extracting multiple values from a single String. In this case the column is redundant but it is ok Summary: Improve RegexTransformer to create multiple columns from regex groups (was: Improve regexTransformer to create multiple columns from regexGroups) > Improve RegexTransformer to create multiple columns from regex groups > --------------------------------------------------------------------- > > Key: SOLR-1061 > URL: https://issues.apache.org/jira/browse/SOLR-1061 > Project: Solr > Issue Type: Improvement > Components: contrib - DataImportHandler > Reporter: Noble Paul > Fix For: 1.4 > > > example > {code:xml} > <field column="full_name" regex="Mr(\w*)\b(\w*)" > groupNames="firstName,secondName"/> > {code} > This is more efficient in extracting multiple values from a single String. In > this case the column is redundant but it is ok -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.