R
Roedy Green
Consider a string like this:
Support DDR2 1066/800/667/533/400 DDR2 SDRAM
Is it possible to compose a regex that will peel out those numbers for
you each in its own field, or do you have to extract the string
"1066/800/667/533/400" and use split?
The various things I have tried just grab the last number.
Support DDR2 1066/800/667/533/400 DDR2 SDRAM
Is it possible to compose a regex that will peel out those numbers for
you each in its own field, or do you have to extract the string
"1066/800/667/533/400" and use split?
The various things I have tried just grab the last number.