It is common way to replace a pattern match with string, but I need to replace all sub-strings which match pattern from text to be matched as another pattern match, is it possible?
For example, is it possible to replace all matches to
[0-9]{2}'[0-9]{2} which represent all strings like 99'99 or 85'55
To this [0-9]{2}.[0-9]{2} which represent all strings like 99.99 or 85.55
Is it possible? How to do this kind of replacements? or I have to handle it manually through matches in for each loop?
([0-9]{2})'([0-9]{2})>$1.$2?99'99to99.99, then it is as simple as to replace'with.. Otherwise, please edit your post with another proper example.