Enter Keywords:
1 - 10 of 538(0.017 seconds)
Sort By:
 
Can anyone tell me what is syntax of (mid(theString, 1, 1)) in C/C++ ? (In console) Another question, can anyone tell me where should I go (website) if I am the beginner of visual C++ (windows pro...
Zones: C++Date Answered: 12/23/1999 Rating: 5.0 Views: 0
I'm trying to get the string between { and }... var a = document.forms[0].onsubmit;      a.substring(a.indexOf('{'),a.lastIndexOf('}')); In my form's onsubmit I've "function{alert('test');...
Zones: JavaScriptDate Answered: 08/05/2002 Rating: 9.4 Views: 0
I am writing a C program and need to use the equivalent of the C++ substring function to return the 1st 10 characters of a string.  Does C have something similar or has anyone had to write their ...
Zones: CDate Answered: 11/20/2002 Rating: 7.6 Views: 0
is there a c library that  i can use to do a sub string / partial string match? ie..  if i have an element with field "christmas" and i do a search for any of the followoing, it returns "christm...
Zones: CDate Answered: 12/30/2003 Rating: 6.4 Views: 0
I've been trying to do this code and it seem not to work and I need your help. This is in C programming only not C++. I need to write a function for substring with four parameters: str, substr, ...
Zones: ProgrammingDate Answered: 10/14/2003 Rating: 7.4 Views: 0
I have a string with the following values: "tField1;tField2;cField3;cField4;" I have the following code to build a 2 dimensional array. This works on the first field and builds the array as F...
Zones: JavaScriptDate Answered: 08/27/2003 Rating: 7.6 Views: 0
Hi, I need a Regex that removes all size, face, and style declarations from inside the HTML font tags within a document (leaving ony the color declarations in the font tags). The code needs...
Zones: Visual BasicDate Answered: 04/02/2004 Rating: 7.4 Views: 0
hello, i have sdfiopgjosdifj3476498764589<abc234>eruhiuwetheri9476948769834rjbheirbt<23423sdf>iojrojyriotyjie what is the best way to extract the values inside the <> without using substring?...
Zones: C#Date Answered: 04/05/2004 Rating: 5.8 Views: 0
While reading, I came across a line of codes which I don't understand. Can somebody explain to me what the below codes are doing? Trim(SubStr(myText.Strings[i], 2, ';'));
Zones: Delphi ProgrammingDate Answered: 04/14/2004 Rating: 8.6 Views: 0
I have a string named in a variable lets say X I have another string variable called Y All I need to do is check if X is a subset of Y for example if X="S1P1" and Y= "S1P1s" then it should g...
Zones: CDate Answered: 04/11/2004 Rating: 8.0 Views: 0