Skip to content
Advertisement

Tag: text-editor

How to replace text symbol in Java or Text Editor

I want to replace the symbol after the second comma. I know how to group until the second comma. I tried below. But I don’t know how to replace from “/” to “?” after the second comma I expected below. GROUP/COMPANY,USER/PASSWORD,BIRTHDAY:”2010/01/01″,ADDRESS:”US/ALASKA” ↓ GROUP/COMPANY,USER/PASSWORD,BIRTHDAY:”2010?01?01″,ADDRESS:”US?ALASKA” Answer In Java Note that the logic of below code is “after finding the first numeric value”,

Advertisement