-
Notifications
You must be signed in to change notification settings - Fork 46
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
Request: replacement for string_length() #48
Labels
feature 💭
It would be extra good if...
Comments
What are you using this value for? |
I'm using the length of the string to estimate how long it will take someone to read it. I use this estimate to set a "timeout" variable for certain kinds of messages to disappear automatically.
So the number of characters minus spaces is still close enough for this use case, and I don't mind writing my own "getter script" to grab that value.
Perhaps with all the other scripts provided, there wouldn't really be many additional uses for such info.
|
I'll consider my options here. There's some knock-on effects if |
sounds good! |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A way to get the length (numb of characters) of a scribble string without the commands would be nice.
I was hoping to just write a script that would grab
_scribble_array[__SCRIBBLE.CHARACTERS]
(or some other part of the scribble element array), but__SCRIBBLE.CHARACTERS
doesn't include spaces in its count.I can achieve what I'm needing with this estimate, but an exact string length without manually parsing would be nice.
The text was updated successfully, but these errors were encountered: