I want to use the .NET Regex Replace method to separate numbers in a string.
String:"Delivery order #135670 is ready for pick up."
Replacement String:"Delivery order # 1 3 5 6 7 0 is ready for pick up."
This is as far as I've gotten.
Matching Pattern:((?<=\#)\d+)
I think this means: If a hash sign is the previous character, match one or more decimal digits. This pattern can be matched one time.
I have no idea how to do the replacement pattern.
If this seems to you like an odd thing to do, it's a way to get a speech synthesizer to speak "number one three five six seven zero" instead of "number one hundred thirty five thousand six hundred seventy".
