LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Datasocket Palm Oil price update

Hi everyone, I want to show the update of palm oil price of the following website : http://www.mpoc.org.my/Daily_Palm_Oil_Prices.aspx

Into my Labview. I'm copy pasting the code from the sourcecode of the page into the strings but I keep getting error. 

Can anyone help me please? 

I feel like the code I write is wrong ><

 

0 Kudos
Message 1 of 2
(2,255 Views)

You cannot find a match because your regular expression string contains \n as line delimiters, while the received string contains \r\n instead. Display the strings as "\-codes" to see the difference.

 

You probably want to create a temporary text indicator at the raw received string and copy/paste the relevant sections from there. Seems to work.

 

(I have not investigated in detail, but you might also have to escape certain characters)

0 Kudos
Message 2 of 2
(2,197 Views)