We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is there a way to limit a string by the number of words? I tried a few ways to get at it.
Str("To be or not to be").words().limit(3).get()
I'm doing it right now with:
Str(text).words().slice(0,5).join(" ") + "...
The text was updated successfully, but these errors were encountered:
@omundy Hey Owen, the words method returns a JavaScript array of strings. You're doing it right by slicing the number of words from the array 👍
words
Sorry, something went wrong.
I could also just do this without the library:
text.split(" ").slice(0,5).join(" ") + "..."
Perhaps something like this would be an acceptable addition?
text.truncate(5, "...").get()
No branches or pull requests
Is there a way to limit a string by the number of words? I tried a few ways to get at it.
Str("To be or not to be").words().limit(3).get()
I'm doing it right now with:
Str(text).words().slice(0,5).join(" ") + "...
The text was updated successfully, but these errors were encountered: