Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. anushrestha

    How do I Extract strings within strings

    I need to allocate the memory to tempString before doing strncpy and it works now.. Thank you all Thanks V
  2. anushrestha

    How do I Extract strings within strings

    V Beleive or not I did similer to this that you sent me and got to the point of core dump. If you complie the code you gave me, it does core dump also at the same place strncpy. It just doesn't like the string pointers and I have string pointer just like below. So I am trying to move from the...
  3. anushrestha

    How do I Extract strings within strings

    Thanks V, I have been trying to use that strstr() function for past 2days, I just cannot make it work. Do you know of any example of C code out there that will achieve what I am trying to do? Thank you
  4. anushrestha

    How do I Extract strings within strings

    Thanks V I did check strtok funciton. But it extract string using a delimiters (a single char). My problem is to extract string between <Transaction> .... </Transaction>
  5. anushrestha

    How do I Extract strings within strings

    I have a xml doc, I need to parse certain tag. For ex. I need to extract strings between <Transaction> and </Transaction>.. How would i achieve that? Thank you <OrderFormDoc> ......... <Transaction> <CurrentTotals> <Totals> <AltTax DataType="Money" Currency="840">0</AltTax>...
  6. anushrestha

    617: A blob data type must be supplied within this context

    Thanks olded, Inserting text blob by calling c function - if you have it yes please send along. Same problem - trying different option Details on my problem. I have to manually create an xml string about 80000 chars and pass it to "c" function to do the https post using CURL. I tried...
  7. anushrestha

    617: A blob data type must be supplied within this context

    I want to load text data from the memory not from the file. It's a sensitive info like credit card that I don't want to put in the file and then load. The way I was thinking is create a tmp table with a text data type field within the program. Insert the text in that text datatype field. Then...

Part and Inventory Search

Back
Top