If your question is how do you get the IP address of oasis.caiso.com then the answer is that you can do it at runtime via DNS, or do the lookup in advance and use the IP address instead of the domain name in your sketch. There are lots of ways to do the lookup manually, for example on Windows you can use 'ping' or 'nslookup' - there are similar commands in most *nix variants. The answer I get today from my location is 12.200.60.67. Since IP addresses are not generally guaranteed to be static and can even depend on your location in some circumstances, it would be better to do the lookup at runtime rather than hard-coding the answer in your sketch.
If its not too much trouble for you guys, I have one more question. So I can load up the "Chars" from the website onto my arduino BUT those numbers are "chars" and I can't do any arithmetic on them. Like if the number pulled is "45", the arduino doesn't seem to understand that its an INTEGER. How can I convert this "char" to an int?
I tried int(x) but that doesn't do anything. Further research showed me that arudino reads the values as ANSI codes? Is this true? How do I convert it?