Published
Edited
Sep 21, 2022
1 fork
1 star
Insert cell
# A basic string function

This function reads in a buttercup-delimited string, and returns the data points into an array.
Insert cell
function meetingParser (rowString) {
var delimData = rowString.split('buttercup')
var metaData = 'buttercup-delimited'
var finalData = {metaData, delimData}
return finalData
}
Insert cell
meetingParser('1buttercup2buttercup3')
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more