Jump to content
UBot Underground

willut72

Fellow UBotter
  • Content Count

    6
  • Joined

  • Last visited

Posts posted by willut72

  1. I've been searching around and haven't found a solution yet.  I am sure this is doable, if I remember correctly there is some type of format data has to be in in order to get items to list sepearately when adding an item to a list.  I have a variable Customer =

     

    Number

    Type
    Description
    Release Date
    Status 
     
    12345
    Outside
    Letter Regarding Notification #12345
    05/29/2014
    Open
     
    14785
    Internal 
    Email and Letter Regarding Notification #14785
    03/09/2009
    Closed
     
    98741
    Outside
    Email and Letter Notification Regarding #98741
    02/08/2011
    Closed
     
    85214
    Outside
    Call, Email, and Letter Notification Regarding #85214
    03/18/2014
    Open
     
    96589
    Internal
    Email and Letter Notification Regarding #96589
    06/08/2009
    Closed
     
    11447
    Internal
    Letter Regarding Notification #11447
    04/04/2013
    Closed
     
    What I need to do is get each of these items listed as an individual item so that I can break them up into a table, adding them as a list from this variable just puts them in the same format (as one item).  The ultimate goal is to get the data into a table.  Any help on how to break these up would be greatly appreciated.
     
    Thanks!

    Will
  2. Removing the space didn't seem to fix it, I still get the "Invalid URI: the hostname could not be parsed.", should their be quotes around the domain? I've tried several different combinations with spacing quotes/no quotes.  When I use the specific IP address it seems to work fine, so it has to be something with ubot (or me incorrectly inputting it) not liking the domain...

  3. I am trying to us a domain instead of an actual IP address while changing my proxy, Below is the code I am currently using.

     

    set proxy credentials("username""password")
    change proxy("ip address: port")

     

    I'd prefer the change proxy command read like:

     

    change proxy("proxy.sample.com: port")

     

    There is the potential that the IP to change, so it would make it easier if I could use the domain,  When I attempt to use the domain, I get the following error: "Invalid URI: The hostname could not be parsed".  Is there anyway to use the domain vs the IP with the change proxy command?

     

    Thanks

    Will

     

     

  4. I am pulling in a string from a table and attempting to look at a text string to identify if it starts with an alphabetic character (i.e. A-Z), and if it does I want to insert a space (i.e. " ").  I was attempting to do this with a regular expression, but I must be missing something, below is a snippet of the code I am using.  I think I must be missing something in how I am attempting to identify the alphabetic characters.  Any help would be greatly appreciated.

     

    set(#SomeTextString, $table cell(&SomeTable, #SpecificRecord, 4), "Global")
                set(#1stLetterSomeTextString, $substring(#SomeTextString, 0, 1), "Global")
                if($find regular expression(#1stLetterSomeTextString, "[A-Z]")) {
                    then {
                        set(#SomeTextString, $insert text(#SomeTextString, " ", 0), "Global")
                    }
                    else {
                        set(#SomeTextString, $table cell(&SomeTable, #SpecificRecord, 4), "Global")
                    }
                }
×
×
  • Create New...