Hi guys, I have a simple question, how do I replace ẞ with ss in a string? Already tried these two solutions, but neither of them worked: replaceAll($InputString, '\ẞ', 'ss') replaceAll($InputString, 'ẞ', 'ss') Thanks in advance!
↧