[a-z]*[a-z]
...
@author tkinjo
/**
* Copyright tkinjo ( http://wonderfl.net/user/tkinjo )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/bAht
*/
package
{
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
[SWF(width = "465", height = "465", frameRate = "60", backgroundColor = "#ffffff")]
/**
* ...
* @author tkinjo
*/
public class Main extends Sprite
{
private const alphabet:String = "abcdefghijklmnopqrstuvwxyz";
public function Main()
{
var textField:TextField = new TextField();
textField.width = stage.stageWidth;
textField.height = stage.stageHeight;
textField.wordWrap = true;
for ( var i:uint = 0; i < alphabet.length; i++ ) {
for ( var j:uint = 0; j < alphabet.length; j++ ) {
textField.appendText( alphabet.charAt( i ) + alphabet.charAt( j ) + " " );
}
textField.appendText( "\n" );
}
addChild( textField );
}
}
}