dollarRegex property

RegExp dollarRegex
getter/setter pair

matches $hello, $ but not $

Implementation

static RegExp dollarRegex = RegExp(r'([^\\]|^)\$');