Not sure whether to put this in the C++ forum or here. But I seem to remember one time being very impressed when I read somewhere of a slick way to swap 2 variables without the use of a temporary var. I wanted to use this in a bubble sort I am writing for a class in Java. Here is the dumb...
I am reading a series of lines from a file, each of which has a set of strings separated by commas, and storing each of those strings into arrays. So I have an array of arrays. The first string on line 1 would be $WL[1][1], the second string on line 1 would be $WL[1][2]. The first string of...
QstrVal.replace(/^\s+(.+)/, "$1"); // replace one or more SPACEs at start of string with nothing
QstrVal.replace(/(.+)\s+$/, "$1"); // replace one or more SPACEs at end of string with nothing
I wanted to come up with a small piece of code for removing preceding and trailing spaces. From what I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.