I have various strings, some like "45", some like "45px". How how I convert both of these to the number 45?
|
|
This will work on
it will parse the first continuous digit only so
|
|||
|
|
|
|||||||
|
|
First, to parse just an integer (since this is a hit on google and it's good background information): You could use the reader:
You could check that it's a number after it's read:
I'm not sure if user input can be trusted by the clojure reader so you could check before it's read as well:
I think I prefer the last solution. And now, to your specific question. To parse something that starts with an integer, like
|
|||||||||||
|
|
AFAIK there's no standard solution for your problem. I think something like the following, which uses
|
|||
|
|
|
This isn't perfect, but here's something with
|
|||
|
|