Re: Iteration over strings
Hexamorph schrieb:
Jay Loden schrieb:
I have to agree with you WRT to the Python documentation, it does tend
to be lacking and difficult to find things at times.
Hmm, I find the Python documentation just excellent. You are
searching for a *string* related problem? Then just check the
*string* class. Also try the dir() function, like
dir(some_string_variable)
If you come from a C++ background this should be familar to you.
Check the appropriate class before trying some "procedural" way.
Anyway, glad we could help :)
.
Relevant Pages
- Re: String searching and lienar optimization
... There are *lots* of things known about pattern matching. ... string: "fjwkrjweoriosdaicfosdifidoiasosifosdifosdfio" for example.. ... Can this problem be posed suitable lfor linear optimization? ... What I am trying to do is to structure a string searching ... (sci.math.num-analysis) - RE: Oject value changing in a loop
... Sub zString_FindGeneral(ByRef IFindThis As String, ... ByRef IFmRow As Long, ByRef IFmCol As Integer, ByRef IToRow As Long, ByRef ... ' OFoundQty is the number of cells found containing the IFindThis string. ... 'Lines A, D, E work when searching one or multiple worksheets ... (microsoft.public.excel.programming) - Re: Parameter Query Form Problem
... Dim stDocName As String ... This is what I used to make my query, its was a Microsoft support site. ... controls on the form so it can run the query. ... Combo Box for searching Customer Name ... (microsoft.public.access.formscoding) - Re: string comparision in a file
... rakesh wrote: ... String which needs to be searched would be ... I would also welcome any other better of handling searching ... and there is considerable overhead time when reading a line (such as ... (comp.lang.cpp) - Re: Fastest way to search text file for string
... I'm searching a text file for a given string -- ... "I don't want to load the entire file into physical memory" ... Not stuck, that is the requirement. ... (microsoft.public.dotnet.languages.csharp) |
|