Announcement

Collapse
No announcement yet.

"Get Delimited String" -- Delimiter can be a string?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • "Get Delimited String" -- Delimiter can be a string?

    Hi,

    I have this line in my action
    Code:
    Get Delimited String (%TempINIFileLocation% = string 0 in %SetupCmdLineArgs%, delimiter /F)

    As you can see i am trying to delimit the string based on /F. Does setup factory allow me to delimit only on character or strings.

    When i run my setup as setup.exe /S /FC:\Program Files, the action mentioned above returns me S /FC:\Program Files, indicating that it delimited on the first character / instead of /F.

    Am i doing it right? Please let me know
    Thanks
    Bishal

  • #2
    Re: "Get Delimited String" -- Delimiter can be a string?

    There does seem to be a small bug that I saw there, however what is happening is not exactly as you described. I've submitted a bug report to what I found.

    When calling the Get Delimited String action on "/S /FC:\Program Files", index 0 should contain:
    /S

    and index 1 should contain:
    C:\Program Files

    Currently index 0 is stripping off the first forward slash, however the second parameter is correct.

    Thank you.

    Comment

    Working...
    X