csvRows
Get the number of data rows in a CSV string (excluding header).
csv(required): CSV string
utlx
let csv = "Name,Age\nAlice,30\nBob,25\nCharlie,35"
{
rowCount: csvRows(csv) // 3
}