What is the regular expression for replaceAll() function to replace "N/A" with "0" ?
input : N/A
output : 0
|
|
|
Assuming s is a
You don't even need regular expressions for that. This will suffice:
|
|||
|
|
|
Why use a regular expression at all? If you don't need a pattern, just use
|
|||
|
|
|
You can try a faster code. If the string contains only N/A:
if string contains multiple N/A:
where join() is method:
it is twice as fast |
||||
|
|