Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如我有一个矩阵:
c1 c2 c3 1 2
matrix[0][1] 的值为空,我得到了输出null,我想设置 matrix[0][1] 的值(字符串),n/a我该怎么办?
null
n/a
可能你需要这个:
if (matrix[0][1] == null) { matrix[0][1] = 'n/a'; }
此条件仅适用于一个索引。将上述条件放在一个循环中并针对矩阵的所有索引运行它。在一天结束时,您的矩阵的空值将被替换为“n/a”