You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Jan Lehnardt (JIRA)" <ji...@apache.org> on 2009/11/21 12:32:39 UTC

[jira] Closed: (COUCHDB-573) Regex capture problem in emit functions

     [ https://issues.apache.org/jira/browse/COUCHDB-573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jan Lehnardt closed COUCHDB-573.
--------------------------------

    Resolution: Invalid

> Regex capture problem in emit functions
> ---------------------------------------
>
>                 Key: COUCHDB-573
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-573
>             Project: CouchDB
>          Issue Type: Bug
>    Affects Versions: 0.11
>         Environment: Linux
>            Reporter: Eric Desgranges
>            Priority: Trivial
>             Fix For: 0.11
>
>
> The capture variables $0, $1, $2... don't get instantiated in regex expressions placed in emit functions.
> Example:
> function(doc) { if (doc.EntityType != null) { emit(doc.ID.Value + '.' + doc.EntityType, { Type: doc.EntityType.replace(/[A-Z]/g, ' $0'), ....
> EntityType: TestTwo 
> Returns:
> Type: " $0est $0wo" 
> Instead of:
> Type: " Test Two" 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.