I wanted to replace text based on 1 digit code all at once
08-m
08-o
into
08_may
08_october
what I am trying to do is replace "m" into "may","o" into "October" all these at once,I am trying to put them in conditional replacement in atom editor
capturing using 08-(\w)
replacing expression 08-(?(\w="m")may|?(\w="o")october)
its not working and I dont know why
I am a beginner in regex,not finding what I am looking for anywhere,pardon me if you find it really dumb.Thanks.