I return the following string from a webpage
Order Number: 1509596 Customer Number: 8
but it coul
if you change orderNumber.replaceAll("[^0-9]", "")
orderNumber.replaceAll("[^0-9]", "")
to
orderNumber.replaceAll("[^0-9]", ",") hence
orderNumber.replaceAll("[^0-9]", ",")
you will get ,1509596,8 as an answer,
,1509596,8
I think this is probably help you to solve ans.