|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
hello
Does anyone know of any websites (free) or applications that have tools that can ether... 1 - concatenate different words from a list to form other word 2 - the same, but check them with domain names available 3 - produce lists of words (real or fake) of all possible combinations of a certain number of letters, or output the same to a certain length ie input a, e, d, s, f and give me all 4 letter cmbinations possible for these. 4 - any other tools along these lines any feedback would be much appreciated!! a+ Garrett |
|
#2
|
||||
|
||||
|
Does anyone know of any websites (free) or applications that have tools that can ether...
1 - concatenate different words from a list to form other word pretty simple. in php u do this, $complete_string = join(" ", $word_array); where $word_array is array/list containing ur words. 2 - the same, but check them with domain names available no big thingy. if you know how to query whois server, just pass on that built word. 3 - produce lists of words (real or fake) of all possible combinations of a certain number of letters, or output the same to a certain length ie input a, e, d, s, f and give me all 4 letter cmbinations possible for these. again, not a hard thing to do. 4 - any other tools along these lines like ?? so i think if u just give a shot to PHP or Perl you can do this thing urself. all the best, jd
__________________
_____________________________ d.k.jariwala (JD) ~ simple thought, simple act ~ I blog @ http://jdk.phpkid.org |
|
#3
|
|||
|
|||
|
yep i was going to do one in php, but surely people have already done these sorts of things before and can post them here??
not trying to come up with an original idea for a site tool or anything just searching for an original domainname! a+ Gar |
|
#4
|
|||
|
|||
|
>$complete_string = join(" ", $word_array);
ok so explain a bit better cos i cant get that to do anything, how is this to form new words?? a+ Garrett |
|
#5
|
||||
|
||||
|
Quote:
suppose $word_array is having words like $word_array[0] = "this"; $word_array[1] = "is"; $word_array[2] = "cool"; and then if u pass it to join where first argument is space, it would join all the words together with space in between so you would have "this is cool" in $complete_string. getting ??? check http://www.php.net/join jd |
![]() |
| Viewing: Dev Shed Forums > Other > Dev Shed Lounge > parsing machines |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|