I want to target lowercases after a . and convert it to uppercase. It seems like Atom is not understanding /U /E ? This is what I have
(\. \n{0,})([a-z])
and replace with
$1\U$2\E
Input: level. the mu-law is Output: level. \Ut\Ehe mu-law is Expected: level. The mu-law is I have regex enabled and case match enabled. Is this an atom issue?