Forum: C Sep 23rd, 2006 |
| Replies: 2 Views: 774 I made a Cpp application wihich links with shared objects. But when I runs the application, it crashes surprisingly before entering into the main() control block. After trying with gdb I came to know... |
Forum: Python Jan 16th, 2006 |
| Replies: 1 Views: 12,231 Hi All,
I want to remove a substring from a string without any additional tabs/returns in the output string. Is there any method availaible or how can I do it. For the ease, I am giving an example:... |
Forum: Python Jan 16th, 2006 |
| Replies: 4 Views: 4,378 Thanks, that is quite helpful. |
Forum: Python Jan 13th, 2006 |
| Replies: 4 Views: 4,378 There woud be some way right for limiting the list, right?
Anyways thanks for suggesting array module. But,problem with array module is that I can represent only an array of basic types such as... |
Forum: Python Jan 13th, 2006 |
| Replies: 4 Views: 4,378 Is it possible to limit the size of list in python.
I want to make list of 5 elements. How can I achieve this thing in python. And one more thing can we declare list to store elements of same type... |
Forum: Python Jan 11th, 2006 |
| Replies: 2 Views: 5,015 Hi vega,
for getting all the match objects in the string. I had found out finditer() and it gave me the result. Thanks for replying. Here is the script snippet :
startpattern =... |
Forum: Python Jan 9th, 2006 |
| Replies: 2 Views: 5,015 Hi everybody,
I want to get the start and end of all the patterns mattched in regex. I know I can get it with start() and end() fn of matched objects. But re.search() return the match object of... |