Forum: Python Aug 13th, 2009 |
| Replies: 4 Views: 554 match and search different on where to check for a match. match checks for a match only at the beginning of the string. search checks for a match anywhere in the string.
agree. In python, there's... |
Forum: Python Aug 12th, 2009 |
| Replies: 4 Views: 279 I think that's the problem. Try this script to output name with space
name = raw_input('name: ')
print 'hello,',name |
Forum: Python Aug 12th, 2009 |
| Replies: 4 Views: 554 Maybe this script solve your problem.
import re
def find_and_sep(inputstr, thing_to_find):
#thing to find is a string that is a regular expression
#finds thing_to_find and returns... |
Forum: Python Aug 8th, 2009 |
| Replies: 2 Views: 229 check this link:
http://wiki.python.org/moin/EclipsePythonIntegration |
Forum: RSS, Web Services and SOAP Aug 4th, 2009 |
| Replies: 0 Views: 1,185 does anyone have recommended modeling tool for wsdl 2.0? |
Forum: Ruby Aug 1st, 2009 |
| Replies: 0 Views: 914 A simple domain name checker. This script use service from who.is
Usage:
ruby domainchecker.rb <domain_name> |
Forum: Ruby Jul 29th, 2009 |
| Replies: 2 Views: 1,520 I have a suggestion, I think your code need a exception handler when your internet connection is lost. |
Forum: Community Introductions Jul 24th, 2009 |
| Replies: 0 Views: 130 Hi all, I'm slac3dork. I'm new here. |