Atom Editor: RegEx replace to uppercase/lowercase
问题 I'm trying to replace some characters in a string with their uppercase/lowercase equivalents in Atom Editor. Let’s say I have the string: some:test:sequence and want the result: Some:Test:Sequence I’m aware of things like \u$1 and \l$1 , but they do not work in Atom, as Atom is using JS-style RegEx. The JS-RegEx solutions I found, however, always involve calling a function (see example here), which is not possible in Atom, afaik. Does anyone know if there is a way to achieve this? I also don