Part of a string, or the function/method that returns part of a string
How do I get a long text string (like a querystring) to display a maximum of 10 characters, using JQuery? Sorry …
javascript jquery substring string-lengthI am already trying for over an hour and cant figure out the right way to do it, although it …
javascript substring indexof slashSimilar to a question posted here, am looking for a solution in Java. That is, how to find the index …
java string substringThis seems like it should be pretty trivial, but I am new at Python and want to do it the …
python string substringPretty straight forward. In javascript, I need to check if a string contains any substrings held in an array.
javascript arrays string substring containsI need to do a lot of regex things in javascript but am having some issues with the syntax and …
javascript regex substringI want to make a program that will read some number in string format and output it like this: if …
c++ string substringvar str = 'asd-0.testing'; var regex = /asd-(\d)\.\w+/; str.replace(regex, 1); That replaces the entire string str with 1. I …
javascript regex replace substring