Hi I want to do the following:
1. Find the position(n) of the first character in a string
2. Then, check if (n+1) or (n-1) is equal to 0 then change it to O.
If I have 01234567890H123.
I want to change 0 in front of H to O.
I tried using regex_match and Fidnstring() to find the position but I don't know how to change the next/previous chracter.
Thank you