Недавний контент jp1

  1. J

    [SOLVED] Regex builder bug

    what is PBC?
  2. J

    Regex a list

    I don't understand why I set Count Regex DOM match to 0, put data on a page, visited it, took DOM, did regex of DOM, specified to 'One match' that was Count Regex DOM, put the result into a variable, increase Count Regex DOM count by 1, wrote to a file, then went back to the page, and instead of...
  3. J

    Can ZP split values?

    I'm currently using tab separated values with no delimiter as split method when it comes to values. One of the values would be the one requiring the split, and ideally there would be two possible paths to take. If the value was smaller than, say, 100 words, no split would be necessary. But if...
  4. J

    What does ''action group id:'' mean?

    ZP MP is a great improvement over ZP but ZP used to have easily viewable identities on each of the steps. I'm getting a Run HtmlElement action id error that's crashing my template at seemingly random places. When I right click and copy ID of action, it goes by the name of ...
  5. J

    Can ZP split values?

    Values that are sitting inside comma separated files. I don't mean split a csv file into pieces, but split the actual value (which would be an article) in three or four bits? If it's more complicated and requires own code addition to ZP MP, can you give it to me? ;)
  6. J

    Global vs local deposit?

    Quick question, when does a local value get reset that a global value won't reset? I've tried clear cache and clear cookies but it's not that.
  7. J

    If Logic match of an article

    Yes, thanks. Now it works good!
  8. J

    If Logic match of an article

    what javascript do you suggest I write in this box?
  9. J

    [SOLVED] Match numbers not going into a variable?

    Oh, ok I understand. I was fixated on match No., thinking it was the match number, whereas it's 'One match' that does the function I was looking for! I had somehow thought One match was unchangeable from the default 'Last', which was very stupid of me, but mostly I was just fixated on Match No...
  10. J

    If Logic match of an article

    Even though I use the DOM Html of the regex builder, I'm getting many articles where the regex is extremely hard to build because of the line breaks in the original DOM Html. In other words, I can scrape the article but it comes with line breaks attached to it, which means that when I want to...
  11. J

    [SOLVED] Match numbers not going into a variable?

    Doesn't match No. allow me to save the match number of a given regular expression on a DOM text? I'm taking text from a webpage, not from a list! So surely it's a bug? What I mean is: There's the DOM I 'Take DOM' I select a match no. 4 of a regexp And try to create a variable or add it...
  12. J

    [SOLVED] Match numbers not going into a variable?

    You mean in the section Tab data/ What to take: ? Because there, First and One Match work for me. They allow me to create a variable, and when I click close window an alert asks me 'Variable doesn't exist. Create it? But when I choose What to take: All or Match No. X, it doesn't ask me...
  13. J

    How do you guys deal with csv values?

    Ok, the issue has to do with line breaks in regex, most probably. One value, the value with the article, is full of line breaks and it's breaking my csv and tsv files in pieces. I haven't learn how to do line breaks in regex, so if anyone can help me isolate the article below, the line that...
  14. J

    How do you guys deal with csv values?

    Thanks, but right now I've zoned the problem down to what must be an issue with TSV or CSV not being capable of holding more than 255 characters, or large articles in any one specific value. I'm doing more split tests to try to figure this out and it's really frustrating, but people must be...
  15. J

    How do you guys deal with csv values?

    thanks hotohori, I'm starting to understand more about this, but I realise now that if I export data from zennoposter to a database, I'm in trouble. A standard csv won't work, and I was relying on standard csv to import into sql to actually create the database. Even if I separate the file with...