I have a String:
a0 + a1*ln(Hr) + a2*ln(St) + a3*ln(Tr)
This need to be converted in to:
a1 + a2*log(Hr[i]) + a3*log(St[i]) + a4*log(Tr[i])
|
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Try this:
This will replace all |
|||||||
|
|
I would use replaceAll() if you only have this string. If you need to apply the pattern more often think about using Pattern |
|||
|
|