恐ろしい「NULL」値を含むタブ区切りテキスト ファイルがあります。そして、いくつかの検索の後、空の文字列を置き換える方法を見つけました...「何か」に。しかし、これを行うと、自分の価値観の半分を失っているようです。
<cfset thisRow = replace(thisRow, "#chr(9)##chr(9)#", "#chr(9)#ScoobySnack#chr(9)#", "all")>
例: 1 行のデータには 120 個の「空のタブ」が含まれていますが、この回避策を実行すると、60 個しか返されません。スニペットは次のとおりです。
<cffile action="read" file="c:\websites\the website\UsageData\#MyFile.NAME#" variable="myDataFile">
<cfset rowCount = listLen(myDataFile,chr(13))>
-Other stuff happens-
<cfloop from="1" to="#rowCount#" index="i">
<table cellpadding="2" cellspacing="0" border="1">
<tr>
<th>ID</th>
<th>Date</th>
<th>Time</th>
<th>DeviceMac</th>
<th>DeviceAddress</th>
<th>DeviceName</th>
<th>UsageBytes</th>
</tr>
<!--- set current row to simple variable --->
<cfset thisRow = listGetAt(myDataFile,i,chr(13))>
<cfset Field1 = listGetAt(thisRow,1,chr(9))>
<cfset Field2 = listGetAt(thisRow,2,chr(9))>
<cfset Field3 = listGetAt(thisRow,3,chr(9))>
<cfset thisRow = replace(thisRow, "#chr(9)##chr(9)#", "#chr(9)#ScoobySnack#chr(9)#", "all")>
<cfset variables.CheckColumnCount = listLen(thisRow,chr(9))>
<cfif variables.CheckColumnCount NEQ variables.ColumnCount>
<cfset variables.AdjustedColumnCount = (variables.CheckColumnCount - 3)>
<cfelse>
<cfset variables.AdjustedColumnCount = (variables.ColumnCount - 3)>
</cfif>
<!---Row #i# Data as a string (#thisRow#)<br/>--->
<cfset ColNum = 4>
<!--- now loop the row --->
<cfloop from="1" to="#variables.AdjustedColumnCount#" index="r">
<cfif r EQ 1>
<cfset variables.MyLoopStartTime = variables.MyStartTime>
<cfelse>
</cfif>
<tr>
<td>#ColNum#</td>
<td>#variables.thisDate#</td>
<td>#TimeFormat(variables.MyLoopStartTime,"hh:mm:ss")#</td>
<td>#Field1#</td>
<td>#Field2#</td>
<td>#Field3#</td>
<td>#listGetAt(thisRow,ColNum,chr(9))#</td>
</tr>
<cfset variables.MyLoopStartTime = DateAdd('n', 1, variables.MyLoopStartTime)>
<cfset ColNum = ColNum +1>
</cfloop>
</table>
<hr>
<cfset count = count + 1>
</cfloop>
考え?