parameter
In Sublime Text 3 I am using the following RegEx code as my search combo to find any alphabet character preceding 0, followed by a space, followed by another character
which is as follows:
RegEx Code
[a-z]0 [a-z]
Search Target Examples
Eg.1 a0 p
Eg.2 p0 sa
Eg.3 ap0 l
Question:
What RegEx code should I write so that it replaces all such occurrences containing the 0s with a dot (.) i.e., it should become like this:
Replace Objective of Target Examples
Eg.1 a0 p → a. p
Eg.2 p0 s → p. sa
Eg.3 ap0 l → ap. l