Returns a string with the '#' characters in the parameter replaced with random digits between 0-9 inclusive. For example, the string "ABC##EFG" could be replaced with a string like "ABC99EFG". @param numberString @return
(String numberString)
| 250 | * @return |
| 251 | */ |
| 252 | public String numerify(String numberString) { |
| 253 | return fakeValuesService.numerify(numberString); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Returns a string with the '?' characters in the parameter replaced with random alphabetic |
no outgoing calls