Now a days, I’m loving VS code for its resource management. I can focused on code and other required library for my project instead of IDE.
In my current project I have to migrate data from legacy system to new system and those data from legacy system has many special character which is non-alphanumeric character. I can create a script to do this job, but I was thinking why not I find a solution in VS code to find those character and take decision based on finding!!!
In VS code there has a search feature that support regular expression. So, I build a regular expression to find those characters. I’m writing this note to keep that regular expression on my record to use in future.
[^a-zA-Z();!0-~9\s,_'#-:\/[]?@"]
Hope this may help others (if they find my note) too.