最初のコンマとその前のすべてを除外しようとしています。正規表現を使用するだけですか、それとも作業を分割しますか?
// notice multiple commas, I'm trying to grab everything after the first comma.
str = 'jibberish, text cat dog milk, chocolate, rainbow, snow',
// this gets the text from the first comma but I want everything after it. =(
result = str.split(',')[0];