-
-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Convert Number to base-10 node #1621
Conversation
Thank you for the review. I appreciate the explanations too. It's been a while for python for me |
I wonder whether we should call the node "Parse Number" instead. "Convert" is quite generic. Thoughts? |
I also prefer a more technical name like parse but when i was workshopping it in discord there was a general reticence towards programmer jargon even if they're more correct. I like Parse Number a lot more than convert. Makes it easier to quick search for too. |
Maybe "extract number"? |
"Extract" feels more like a substring manipulation. It'd feel even weirder imo if/ when there's actual string extraction. Parse is still my vote on verb. It's unambiguous and doesn't overlap with other nodes. |
Reviewed by: Michael Schmidt <[email protected]>
Co-authored-by: Michael Schmidt <[email protected]>
Small node to go from any text to a base-10 integer.
Criticism and/ or improvements welcome.