Hello eveyone, I need help, I am using the class WWW for get a code source of a webpage.
The problem is that the code that I get is short, and I need all code of all webpage…
In the console only I can see short code and If I put the text to a text gameobject Unity says that it´s very big to show me.
Example:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class Web : MonoBehaviour {
public Text responseText;
public void Request(){
WWW request = new WWW("http://youtube.com");
StartCoroutine(OnResponse(request));
}//Request
private IEnumerator OnResponse(WWW req){
yield return new WaitForSeconds ( 3 );
Debug.Log(req.text);
}//DescargarContenido
}//Web
Click on the line in cosole. It shows you only the beginning, but when clicking it should show you all in the bottom part of console (below the split).
So this isn’t the problem with WWW, it’s a problem with showing the downloaded text.
Hello Aurismas-Cernius Thanks a lot for your reply. I can´t see the final of the code yet ( for example en HTML)

My problem is the next, I need to get a webpage code (all code), and later find a line of text with IndexOf, etc… but this last not is important now…
I only know that this is possible with the class WWW
But, when I had the code into a variable and I tried IndexOf in the final of the code for example, not works, I thought that is a error of IndexOf, so, I tried to show it in the console…
With debug.log, i can show a line, i can CLICK and show more… but… i can see all code.
The code CUT more or less 6000 characters, I don´t know Why…
Sometimes I thought that the variable STRING can´t save a lot of words 
I don´t know how i can get all code of my web yet
Thanks for all!
Try printing WWW.bytes property to file and then check it’s contents. It’s something strange here…
Thanks, finally the problem with the Log is the Next Unity console log message truncated | Honkbark Studios
But, I need to try use INDEXOF because sometimes not works when i need find a word 