VSCode Find and Replace Regex
JS
S
JavaScriptUseful collection of regex for VSCode
1// Remove all text until the first comma
2^(.+?),
3
4// From space to end of line
5\s(.*)Created on 4/8/2020
Useful collection of regex for VSCode
1// Remove all text until the first comma
2^(.+?),
3
4// From space to end of line
5\s(.*)Created on 4/8/2020