汇总列表中的动态字段
Sum up dynamic fields in list
我有一个这样的列表:
<cfset list ="group 1:1; group 2:4; group a:7; group 1:3; group a:1;">
我想做的是统计(总结)1组、2组、a组等有多少人。现在这些字段是动态的,所以我不知道确切的名字组。
所以这个例子的最终结果是:
group 1: 4
group 2: 4
group a: 8
所以这个列表只是一个例子,实际上它更大,有更多的组(动态名称)。我正在使用 Coldfusion/Lucee。有人可以帮我解决这个问题吗?
这只是众多可能的替代方法之一。从使用查询而不是列表作为起始值开始。
我正在做的是使用 ;
作为分隔符循环列表并将值添加到结构中。我稍后使用该结构循环并列出最终总数。
<cfset list ="group 1:1; group 2:4; group a:7; group 1:3; group a:1;">
<cfset totalStruct = {}>
<cfloop list="#list#" item="group" delimiters=';'>
<cfset groupName = listFirst(group, ':')>
<cfset groupNameKey = replace(groupName, ' ', '', 'all')>
<cfset groupValue = val(listLast(group, ':'))>
<cfif !structKeyExists(totalStruct, groupNameKey)>
<cfset totalStruct[groupNameKey] = {name:groupName, total=groupValue}>
<cfelse>
<cfset totalStruct[groupNameKey].total += groupValue>
</cfif>
</cfloop>
<cfoutput>
<ul>
<cfloop collection="#totalStruct#" item="group">
<li>#totalStruct[group].name# : #totalStruct[group].total#</li>
</cfloop>
</ul>
</cfoutput>
另一种方法是使用 map
and/or reduce
闭包函数来解析您的列表。
注意 1:我通常发现 cfscript 对于解析文本或“循环”的大多数事情来说要容易得多。
注意 2:我不是循环的忠实拥护者,尤其是围绕大文本值。闭包函数可能会更高效。
<cfset lst ="group 1:1; group 2:4; group a:7; group 1:3; group a:1;">
首先,函数内部有一个 map()
:
<cfscript>
public Struct function parseLst (required String lst) {
var retval = {} ; //// Default return variable.
//// https://docs.lucee.org/reference/functions/listmap.html
arguments.lst.listmap(
function(el) {
var k = el.listFirst(":").ltrim() ; /// Get the "key" and strip extra leading space.
var v = el.listLast(":") ; /// Get the "value".
var p = retval["#k#"]?:0 ; /// Use Elvis to default to 0 if no struct Key exists.
retval["#k#"] = v + p ; /// Set the value of the key. NOTE: A struck key with the same name will generally overwrite itself. We want to add it.
}
,";" /// Specify the delimiter of the list.
) ;
return retval ;
}
writeDump(parseLst(lst));
</cfscript>
然后 reduce()
而不是在函数内部。
<cfscript>
//// https://docs.lucee.org/reference/functions/listreduce.html
r = listReduce(lst,
function(prev,nxt){
k = nxt.listFirst(":").ltrim() ; /// Get the "key" and strip extra leading space.
/// To shorten it, I just skipped setting the value beforehand and just did it while setting the struct value. Same method as above.
prev["#k#"] = (nxt.listLast(":"))+(prev["#k#"]?:0) ;
return prev ;
}
,
{} // Initial value
,";" // Delimiter
) ;
writedump(r) ;
</cfscript>
两者都可以(而且可能应该)在函数内部,然后您可以将列表变量发送给它。
如果可能的话,修复原始列表可能更容易使用。
https://trycf.com/gist/dda51d88504a625fce5548142d73edb3/lucee5?theme=monokai
============================================= ==========
编辑:
使用 listFirst/Last()
函数的替代方法是将“列表”转换为数组,然后使用这些部分获取“键”和“值”。
<cfscript>
//// https://docs.lucee.org/reference/functions/listreduce.html
s = listReduce(lst,
function(prev,nxt){
var elem = nxt.listToArray(":") ;
prev["#elem[1].ltrim()#"] = elem[2] + (prev["#elem[1].ltrim()#"]?:0) ;
return prev ;
}
,
{} // Initial value
,";" // Delimiter
) ;
writedump(s) ;
</cfscript>
我有一个这样的列表:
<cfset list ="group 1:1; group 2:4; group a:7; group 1:3; group a:1;">
我想做的是统计(总结)1组、2组、a组等有多少人。现在这些字段是动态的,所以我不知道确切的名字组。
所以这个例子的最终结果是:
group 1: 4
group 2: 4
group a: 8
所以这个列表只是一个例子,实际上它更大,有更多的组(动态名称)。我正在使用 Coldfusion/Lucee。有人可以帮我解决这个问题吗?
这只是众多可能的替代方法之一。从使用查询而不是列表作为起始值开始。
我正在做的是使用 ;
作为分隔符循环列表并将值添加到结构中。我稍后使用该结构循环并列出最终总数。
<cfset list ="group 1:1; group 2:4; group a:7; group 1:3; group a:1;">
<cfset totalStruct = {}>
<cfloop list="#list#" item="group" delimiters=';'>
<cfset groupName = listFirst(group, ':')>
<cfset groupNameKey = replace(groupName, ' ', '', 'all')>
<cfset groupValue = val(listLast(group, ':'))>
<cfif !structKeyExists(totalStruct, groupNameKey)>
<cfset totalStruct[groupNameKey] = {name:groupName, total=groupValue}>
<cfelse>
<cfset totalStruct[groupNameKey].total += groupValue>
</cfif>
</cfloop>
<cfoutput>
<ul>
<cfloop collection="#totalStruct#" item="group">
<li>#totalStruct[group].name# : #totalStruct[group].total#</li>
</cfloop>
</ul>
</cfoutput>
另一种方法是使用 map
and/or reduce
闭包函数来解析您的列表。
注意 1:我通常发现 cfscript 对于解析文本或“循环”的大多数事情来说要容易得多。
注意 2:我不是循环的忠实拥护者,尤其是围绕大文本值。闭包函数可能会更高效。
<cfset lst ="group 1:1; group 2:4; group a:7; group 1:3; group a:1;">
首先,函数内部有一个 map()
:
<cfscript>
public Struct function parseLst (required String lst) {
var retval = {} ; //// Default return variable.
//// https://docs.lucee.org/reference/functions/listmap.html
arguments.lst.listmap(
function(el) {
var k = el.listFirst(":").ltrim() ; /// Get the "key" and strip extra leading space.
var v = el.listLast(":") ; /// Get the "value".
var p = retval["#k#"]?:0 ; /// Use Elvis to default to 0 if no struct Key exists.
retval["#k#"] = v + p ; /// Set the value of the key. NOTE: A struck key with the same name will generally overwrite itself. We want to add it.
}
,";" /// Specify the delimiter of the list.
) ;
return retval ;
}
writeDump(parseLst(lst));
</cfscript>
然后 reduce()
而不是在函数内部。
<cfscript>
//// https://docs.lucee.org/reference/functions/listreduce.html
r = listReduce(lst,
function(prev,nxt){
k = nxt.listFirst(":").ltrim() ; /// Get the "key" and strip extra leading space.
/// To shorten it, I just skipped setting the value beforehand and just did it while setting the struct value. Same method as above.
prev["#k#"] = (nxt.listLast(":"))+(prev["#k#"]?:0) ;
return prev ;
}
,
{} // Initial value
,";" // Delimiter
) ;
writedump(r) ;
</cfscript>
两者都可以(而且可能应该)在函数内部,然后您可以将列表变量发送给它。
如果可能的话,修复原始列表可能更容易使用。
https://trycf.com/gist/dda51d88504a625fce5548142d73edb3/lucee5?theme=monokai
============================================= ==========
编辑:
使用 listFirst/Last()
函数的替代方法是将“列表”转换为数组,然后使用这些部分获取“键”和“值”。
<cfscript>
//// https://docs.lucee.org/reference/functions/listreduce.html
s = listReduce(lst,
function(prev,nxt){
var elem = nxt.listToArray(":") ;
prev["#elem[1].ltrim()#"] = elem[2] + (prev["#elem[1].ltrim()#"]?:0) ;
return prev ;
}
,
{} // Initial value
,";" // Delimiter
) ;
writedump(s) ;
</cfscript>