Join Slack
Powered by
I want to remove all characters in a given string,...
# announcements
s
Sandy
01/30/2020, 4:39 AM
I want to remove all characters in a given string, which do not match the regex above. How can I accomplish this?
r
Ruckus
01/30/2020, 2:49 PM
val result = string.replace(regex, "")
3
Views
Open in Slack
Previous
Next