嘿伙计们,所以我正在制作一个脚本来从这个网站(http://grecni.com/texttwist.php)获取单词/结果,所以我已经准备好了 http 请求发布,等等。
我现在唯一需要做的就是取出单词,所以我正在使用一个看起来像这样的 html 源代码:
<html>
<head>
<title>Text Twist Unscrambler</title>
<META NAME="keywords" CONTENT="Text,Twist,Text Twist,Unscramble,Free,Source,php">
</head>
<body>
<font face="arial,helvetica" size="3">
<p>
<b>3 letter words</b><br>sae sac ess aas ass sea ace sec <p>
<b>4 letter words</b><br>cess secs seas ceca sacs case asea casa aces caca <p>
<b>5 letter words</b><br>cacas casas caeca cases <p>
<b>6 letter words</b><br>access <br><br>
Found 23 words in 0.22962 seconds
<form action="texttwist.php" method="post">
enter scrambled letters and I'll return all word combinations<br>
<input type="text" name="l" value="asceacas" size="20" maxlength="20">
<input type="submit" name="button" value="unscramble">
<input type="button" name="clear" value="clear" onClick="this.form.l.value='';">
</form><p>
<a href=texttwist.phps>php source</a>
- it's kinda ugly, but it's fast<p>
<a href=/>back to my page</a>
</body>
</html>
我正在尝试获取“sae”、“sav”、“secs”、“seas”、“casas”等词。
有什么帮助吗?
这是我得到的最远的地方,不知道从这里做什么。:链接文本
有什么建议么?帮助?