I have a Column in which I would like to replace a certain character, the problem is this character can be in the middle of the string or at the end. And I only want to replace this character and not all the other ones.
For example
Root#root#abc#test#stest#s#beta#402
Root#root#abc#test#stest#s
Now I want to replace the s with an uppercase S but only the s after the 5.#:
Root#root#abc#test#stest#S#beta#402
Root#root#abc#test#stest#S
The structure of the column is always like this, the character to replace is always after the 5th #. Replace wont work bc if I search for #s then the #stest would get #Stest.
thx