Jump to content
UBot Underground

[Sell Plugin] Advanced Data Text File


Recommended Posts

  • Replies 544
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

V3.3.4.1 (Warning. This amendment makes a difference to the previous version. File a previous version of the plugin will not work correctly.) Improvement command table search Merge command $pad left

V2.0.1.5 Add Option: remove blank lines : Trim Mode remove blank lines : Multiple Spaces To One Space remove blank lines : Multiple New Line To One New Line   Update Sample File: $remove blank lines

4.0.2.0 (BETA) (Warning. Your old code can not be used with the new version of the plugin.) string encode/decode     - re-name option     - add field "Encode/Decode"      string encrypt/decrypt:     -

Posted Images

  • 1 month later...

Hey Pash.. got a little request.. 

 

When using for example "remove all from list" from the "File Management" plugin, you need to use regex to remove from a list. I was wondering if you could create a function to convert a string into a regex escaped string,

 

For example:           /example/      ===>           \/example\/

 

Let me know what you think.. thanks!

Link to post
Share on other sites

Hey Pash.. got a little request.. 

 

When using for example "remove all from list" from the "File Management" plugin, you need to use regex to remove from a list. I was wondering if you could create a function to convert a string into a regex escaped string,

 

For example:           /example/      ===>           \/example\/

 

Let me know what you think.. thanks!

I can not make it static.

Because the use of each vary widely.

You can create it by yourself in your own style.

Link to post
Share on other sites
  • 4 weeks later...

(Warning: The update makes the plugin version previous malfunction. You have to go back and correct it.)
V3.1.0.0

Rename Command/Function
rand option >> rand 2
sort table option >> sort table 2
file option >> file manager
folder option >> folder manager
list from table option >> list from table 2
sort list option >> sort list 2
remove table option >> remove table row/col
sort table option >> sort table
list from table option >> list from table

table search v2 >> table search
list append prefix-suffix >> list append prefix/suffix
list replace (regex) >> list replace
read begin-end line >> read line begin/end
replace new line by br >> nl to br

Add new option
list remove: add "regex"

Add new command
list from table string: get list from table string style
list append prefix/suffix : add prefix or suffix to list (function)

Merge command
table replace + table replace (regex) >> table replace
table search + table search (regex) >> table search
find first (regex) + find index (regex) >> find index (regex)

Link to post
Share on other sites

I have one question about save variable to excel. I see, that we have only save table to excel. Can i save only variable? 

 

Because "excel" want tabular data.

I think that "variable" that you are using a tabular data string.

 

Not sure of your data format.

set(#MyVar,"Test","Global")
comment("Method 1")
set table cell(&Table,0,0,#MyVar)
plugin command("Advanced Data Text File.dll", "save to excel file", &Table, "{$special folder("Application")}\\Test.csv")
comment("Method 2")
plugin command("Advanced Data Text File.dll", "save to file 2", "{$special folder("Application")}\\Test.csv", #MyVar, "UTF-8", "False", "End", "False")
Link to post
Share on other sites

Regular excel extension xlsx . Example i want to save variable in    A4 cell .  Now i must save to table, and from table to excel. But, if i save only this variable, if i have in this excel other data, all data will be deleted, and show me only this last. This mean, for big data, i must allways save first to table, and all save into excel. But, what if ubot restart ?  In this case i must back data from excel to table, and again fill excel.

Link to post
Share on other sites

Regular excel extension xlsx . Example i want to save variable in    A4 cell .  Now i must save to table, and from table to excel. But, if i save only this variable, if i have in this excel other data, all data will be deleted, and show me only this last. This mean, for big data, i must allways save first to table, and all save into excel. But, what if ubot restart ?  In this case i must back data from excel to table, and again fill excel.

I'm sorry, I do not understand

I want pictures or video, and data samples.

Link to post
Share on other sites

I want in  excel table put  A4 , one variable, . Not put first in table of ubot  then this table in excel. Is this posible ?

 

If this now not posible, can you put this update please ?

Edited by ekvador
Link to post
Share on other sites

I want in  excel table put  A4 , one variable, . Not put first in table of ubot  then this table in excel. Is this posible ?

 

If this now not posible, can you put this update please ?

not possible.

Link to post
Share on other sites

(Warning: The update makes the plugin version previous malfunction. You have to go back and correct it.)
V3.1.0.3

random list items: add option "Index" and "Count"
random list items: optimize speed

Link to post
Share on other sites
  • 5 weeks later...

V3.2.7.0
Add new command

$is contains: check is contains in string have option "Ignore Case"
$roman numerals: convert number to roman numerals
rename files: rename multi files
rename folders: rename multi folders
$list except : get unique items from 2 list
$list find : list find all more find option
$list find index : list find all index  more find option
$char count: by name
$list find duplicate: get list duplicate item
$list insert: insert itemt to list
$list insert range: insert items to list
$list remove range: list remove by range
list remove empty: by name
$list remove empty: by name

 

sample file in folder "Sample File V3.2.7.0 Up"

Link to post
Share on other sites

Pash, add "$is number" function.

Ubot 5 already have this but im not using ubot 5 on my compiled bots.

 

Additional suggestion:

Add $contain number

It will check if the current value contains number.

Please wait loop for next update.

Link to post
Share on other sites

Please wait loop for next update.

 

Thanks! And thank you for adding those new commands in this plugin. :)

 

I have another suggestion to make this plugin better.

 

Add an option for random list item to not repeat the item after it chooses it.

Ubot have a random list item but there's a possibility that the same item will be chosen again.

Add option to remove the item from list after its being used.

Link to post
Share on other sites

I have another suggestion.

List filter function.

 

You can add this to $add list to list.

It's like list from text but it will filter the list.

For example if the current list position contains "http" on it will automatically remove that item list before it adds to the final list.

We can do this by looping on each item list but it would be good if it can be done by a single function.

 

To get the idea. Here's the code i use to filter list:

set(#blogpostFilterPosition,0,"Global")
loop($list total(%blogposterListings)) {
    set(#blogposterFilterCurrentItem,$list item(%blogposterListings,#blogposterFilterPosition),"Global")
    if($contains(#blogposterFilterCurrentItem,"gp")) {
        then {
            remove from list(%blogposterListings,#blogposterFilterPosition)
        }
        else {
        }
    }
    increment(#blogposterFilterPosition)
}




Link to post
Share on other sites

V3.2.9.1

Add new command
$is numeric: check is number or contains number
$list filter: list filter support regex/contains/equals/starts with/end with

Add new option
random list items: add "Being Used Remove"

Add sample file to folder

Link to post
Share on other sites

On random list item. Can you add a variable parameter to return the current index of the list item that is currently being used?

This will be useful if we use a table as list.

do not understand

Link to post
Share on other sites

For example. I have this list

 

apple

banana

carrot

eggplant

 

Random list item generate banana which is list position 1

Have an option to return the list position 1 into variable.

Please wait 30 days or more for the next update.

Link to post
Share on other sites
  • PRO locked this topic
Guest
This topic is now closed to further replies.

×
×
  • Create New...