Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. helpeachother

    column name in datagrid results

    Here is another way to do it. Dim NameoftheDataGrid(,) As String = { _ {"columnheadname", "System.String"}, _ {"columnheadname", "System.String"}, _ {"columnheadname", "System.String"}, _ {"columnheadname", "System.String"}, _...
  2. helpeachother

    Regular Expression Search Pattern

    James: How can I send you attachment? I need to show you the block of the text the pattern is searching for the matches. It is a screen capture. Here is the table I copied from our intranet, but you cannot see the tags. Date DS Used (KB) DS Available (KB) DS Total (KB) PS Used (KB) PS...
  3. helpeachother

    Regular Expression Search Pattern

    James: I have just found out that the numPatter: (?<=<td align=middle>)([:\d\s]+)(?=</td) works. The datePattern : "(<TR>)[<>/=:\d\sa-a-zA-Z]+?(/TR>)" skips every other row, e.g. it mtaches the 2 row, 4th row, etc. That is why I did not get the num data on the row I try to get the matches...
  4. helpeachother

    Regular Expression Search Pattern

    Jame: Sorry to bother you again. The numPattern does not get anything. (?<=<td align=middle>)([:\d\s]+)(?<=</td>) I do not quite understand([:\d\s]+). Thanks, KWright
  5. helpeachother

    Regular Expression Search Pattern

    Jame: I have not tried yet. I do hope so. I will let you know. Thanks:-) KWright
  6. helpeachother

    Regular Expression Search Pattern

    Hi, Thanks, Jame. You are really helpful!!!! I hope I will be able to provide help to someone else in the future. KWRIght
  7. helpeachother

    Regular Expression Search Pattern

    Jame: VB.NT still does not like the like: regExp = New Regex(datePattern, selectedRegexOptions) I will try to tweak the pattern a little bit to see if it will work. Thanks again for taking the time to help me!! KHWright
  8. helpeachother

    Regular Expression Search Pattern

    Jame: I rewrote the function, but the program stop at following line: regExp = New Regex(datePattern) It seems that it did not like my datePattern. The following is my code for the function. Willl you have a look at the code to help me find the error? Thanks. To my understanding...
  9. helpeachother

    Regular Expression Search Pattern

    James: Thanks you SO MUCH for spending time to work this out for me. I will try it this morning and let you know the results. I really appreciate your help, James!!!-:) KHWright
  10. helpeachother

    Regular Expression Search Pattern

    Jame: Yes. Here it is: 20050530 00:00:00 1065069 57106 1122175 88173 10130 98303 1220478 163840 1384318 20050531 00:00:00 1065147 57028 1122175 88173 10130 98303 1220478 163840 1384318 20050601 00:00:00 1064855 57320 1122175 88173 10130 98303 1220478 163840 1384318 20050602 00:00:00...
  11. helpeachother

    Regular Expression Search Pattern

    Hi, Everyone: Thank you so much for your help with my debug question posted yesterday. I am sorry that I need your help again. The following is a function a wrote in VB.NET to use the regular expression to get a few numbers from a block of text I grabed from a table on our intranet. It...
  12. helpeachother

    Please let me find the bug(s) in a function

    Hello, everyone: I am a new member of this group and need your help to dibug my code. I wrote a function named "getMemoryData" and it gives me an error message saying that the arguments are not specified,but I did. Will you help me to see the error(s) that I cannot see? Thanks. The part of...
  13. helpeachother

    Regular Expression Search Pattern

    Hello, everyone: I am a new member of this group and need your help with the following search pattern I wrote. I am tryinhg to get the numbers of the 4th column (Cell) and same them as "bts", but it does nt work. Will you please tell me what is wrong with my code? Thanks. Here is the code...

Part and Inventory Search

Back
Top