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

Pash how do you use List Remove?

add item to list(%a,"a","Delete","Global")
add item to list(%a,"b","Delete","Global")
plugin command("Advanced Data Text File.dll", "list remove", %a, "a", "False")

All I get is errors. Index out of range or something.

Link to post
Share on other sites

Hey Pash,

Does the advanced text plugin have this.

 

For example i have this text in my &table:

name1,ID1
name2,ID2
name3,ID3
name4,ID4

And i want to insert a numbering list as column and the result should be like this

1,name1,ID1
2,name2,ID2
3,name3,ID3
4,name4,ID4

Ubot have a "Add list to table as column" command but it will replace what's on the current column.

I need a command that will insert a column and move the existing text to the other column.

Link to post
Share on other sites

Hey Pash,

Does the advanced text plugin have this.

 

For example i have this text in my &table:

name1,ID1
name2,ID2
name3,ID3
name4,ID4

And i want to insert a numbering list as column and the result should be like this

1,name1,ID1
2,name2,ID2
3,name3,ID3
4,name4,ID4

Ubot have a "Add list to table as column" command but it will replace what's on the current column.

I need a command that will insert a column and move the existing text to the other column.

Try

plugin command("Advanced Data Text File.dll", "create table from string", "name1,ID1
name2,ID2
name3,ID3
name4,ID4", "\\n", ",", &table1)
add list to list(%mylist1,$plugin function("Advanced Data Text File.dll", "$split", "1,2,3,4", ",", "None", "True"),"Delete","Global")
add list to table as column(&table2,0,0,%mylist1)
plugin command("Advanced Data Text File.dll", "table merge", &table2, &table1, "Col", "False")
Link to post
Share on other sites

V2.1.0.0

Add New Command
table insert : insert bank row or col to table
table insert by list : insert by list to row or col of table

Add Option
remove table option : add "Remove Row" and "Remove Col"

 

Add Sample File

table insert by list.ubot

 

Link to post
Share on other sites

V2.1.0.0

 

Add New Command

table insert : insert bank row or col to table

table insert by list : insert by list to row or col of table

 

Add Option

remove table option : add "Remove Row" and "Remove Col"

 

Add Sample File

table insert by list.ubot

 

 

Awesome!

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

every time I load ubot I get a message saying 2.1.0.2 is out, but when I look 2.1.0.1 is the newest uploaded?

Oh. I'm sorry, I'm confused

Enter the wrong version

Now I fixed

Link to post
Share on other sites

V2.1.1.0
Edit Command Option (Warning: The update makes the plugin version previous malfunction. You have to go back and correct it.)
split : Split By Multilite ==> Split By Regex
split : Option ==> Add Option For Regex ( "None", "Compiled", "Culture Invariant", "ECMA Script", "Explicit Capture", "Ignore Case", "Ignore Pattern Whitespace", "Multiline", "Right To Left", "Singleline")

Link to post
Share on other sites

V2.1.3.0
Add New Command
table search v2 : table search in ubot not fix long time
table replace : by name

Add Option
table replace (regex) : add "Regex Option"
table search (regex) : add "Regex Option"

Link to post
Share on other sites

V2.1.4.0
Add New Command
table from html



$table html from html


Add New Sample File
table from html.ubot
$table html from html.ubot
Link to post
Share on other sites

V2.1.5.0
rename command
table from html ==> create table from html
$table html from html ==> $scrape html table

I apologize for this I want to group the search easier.
And consistent with other commands. Or future command

Link to post
Share on other sites
Question:

 

Is it possible to do:

ANSI <> Unicode text conversions?

 

And also convert the different types of line feeds into a single format?

 LF:    Line Feed, U+000A

 VT:    Vertical Tab, U+000B

 FF:    Form Feed, U+000C

 CR:    Carriage Return, U+000D

 CR+LF: CR (U+000D) followed by LF (U+000A)

 NEL:   Next Line, U+0085

 LS:    Line Separator, U+2028

 PS:    Paragraph Separator, U+2029

 

 

Not sure if that would be already solved when a unicode text is converted to ANSI?

 

I need that because I have some issues with text / variables. They both look the same, but they are not. And I think it has something todo with the linefeed.

 

Danny

Link to post
Share on other sites

V2.1.6.0
Add New Command
scrape html data : scrape html data (get html / text) by xpath
get text file encoding : get text file encoding "ANSI", "ASCII", "Unicode" ext.
text file encoding : convert text file encoding "ANSI", "ASCII", "Unicode" ext.

  • Like 1
Link to post
Share on other sites

Add Sample File
$get text file encoding.ubot
text file encoding.ubot
Test text file (Folder)

Link to post
Share on other sites

V2.1.8.0
Add New Command
list find duplicate : find duplicate from list return table (Text,Index or Text,Count)
remove html data : remove html code by XPath
replace html data : replace html code by XPath

Add New Option
list remove list : add "Regex Option"
list remove list : add "Equals Option"
list remove : add "Regex Option"
list remove : add "Equals Option"

Add New Sample File
list find duplicate.ubot
remove html data.ubot
replace html data.ubot

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

×
×
  • Create New...