Search results for query: *

  1. jpnoob

    FTP Plugin?

    I would like to know if there are any decent (and free) Visual Studio 2005 plugins for FTP. I know I can use Build > Publish Web Site, but that is PAINFULLY slow, I also know about Dispatch, but I don't want to spend thirty bucks just for FTP capabilities within VS Are there any others for VS...
  2. jpnoob

    ArrayList to DataGrid

    I have an ArrayList that are seperated by the pipe: colA | colB | colC | colD how can I bind that array into separate columns in a datagrid each with their own column header?
  3. jpnoob

    String within a string

    Perfect, just what I was looking for! Thanks Matt :)
  4. jpnoob

    String within a string

    I have the following string http://www.domain.com/this/that/and/the/other and want to extract this/that/and/the/other from it. This part of the string will be dynamic so it could be just this/that or longer. Ultimately i'd like to look for http://www.domain.com/ in the string and grab...
  5. jpnoob

    Splitting an ArrayList

    I need to split an Arraylist into individual columns, here is an example of a column in the arraylist: John Doe - John.Doe@email.com I want to split up the arraylist so I can use the name and the email address in an email routine i.e. Dear John Doe, yada yada Thanks in advance!
  6. jpnoob

    Question String Parsing

    Thanks, just what I needed :)
  7. jpnoob

    Question String Parsing

    Thanks, that decodes it to 404;http://localhost/app/dir, I still need to grab the dir value (which could be anything - dir, dir1, doe, etc) so I can set a variable with it.
  8. jpnoob

    Question String Parsing

    I have the following string: 404%3bhttp%3a%2f%2flocalhost%2fapp%2fdir I need to be able to parse it to grab the last directory from the path, which in this case is dir Any help? Thanks!
Back
Top