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

Is there an easy way in ubot to convert a file from ASCI to UTF-8?


I mean i want to use your plugin to save or append my files so that all characters can be accepted. I want the files to be created by default in UTF-8 encoding.

 

SO please, let me know if you plugin can do convert ANSI files to UTF-8.

 

(text file encoding : convert text file encoding "ANSI", "ASCII", "Unicode" ext.)

in this command utf-8 is not here.

 

 

I want it badly. But reason is just to convert ANSI encoded files to UTF8 files by default

Link to post
Share on other sites

 

not sure (if you have image for clear more)

 

this is like command replace

 

plugin

http://network.ubots...data-text-file/

 

command

replace token : By name

 

Ok so I have a .html file that I am using as a template for displayed output this template has ubot variables inside of it ( Customer: {#fname} {#lname} )  could I do this

 

 

loadhtml(pash_execute_code(read file(template.html))) would this replace the variables inside the .html file with the ubot fname lname ?

 

this sample

http://i.imgur.com/WQWVFDR.gifv

reset account("Any")
set(#fname,$account data("First Name"),"Global")
set(#lname,$account data("Last Name"),"Global")
comment("data from read file or other")
set(#Data,"<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>
<p>Customer: \{#fname\} \{#lname\} </p>
</body>
</html>","Global")
set(#Data,$plugin function("Advanced Data Text File.dll", "$replace token", #Data, "\{#fname\}
\{#lname\}", "{#fname}
{#lname}"),"Global")
load html(#Data)

post-5560-0-18828600-1454375430_thumb.gif

Link to post
Share on other sites

Is there an easy way in ubot to convert a file from ASCI to UTF-8?

 

 

I mean i want to use your plugin to save or append my files so that all characters can be accepted. I want the files to be created by default in UTF-8 encoding.

 

SO please, let me know if you plugin can do convert ANSI files to UTF-8.

 

(text file encoding : convert text file encoding "ANSI", "ASCII", "Unicode" ext.)

in this command utf-8 is not here.

 

 

I want it badly. But reason is just to convert ANSI encoded files to UTF8 files by default

yes have it.

http://i.imgur.com/4ylzqIr.png

 

 

this sample convert file

plugin command("Advanced Data Text File.dll", "save to file 2", "{$special folder("Desktop")}\\UTF8.txt", $plugin function("Advanced Data Text File.dll", "$read file 2", "{$special folder("Desktop")}\\ANSI.txt", "ANSI"), "UTF-8", "False", "End", "False")
Link to post
Share on other sites

V3.3.0.0
Urgent task
Bring back command "list remove" mode "command" but still mode "function" with.

re-add command
list remove

Link to post
Share on other sites

Suggestion on $list filter. Add an option to add or exclude filtered list.

Right now it's only adding list that contains the text filter.

???

Link to post
Share on other sites

On list filter when you use it it will only add the filtered list to the list.

For example i have this list

http://www.facebook.com/dsa2dsada/comment/dsadsa1
http://www.facebook.com/dsa2dsada/comment/dsadsa2
http://www.facebook.com/dsa2dsada/post/dsadsa3
http://www.facebook.com/dsa2dsada/comment/dsadsa4
http://www.facebook.com/dsa2dsada/post/dsadsa5

When i put the word comment on the list filter it will only add items that have "comment".

What if i want to remove the items with "comment" from the list?

Link to post
Share on other sites

On list filter when you use it it will only add the filtered list to the list.

For example i have this list

http://www.facebook.com/dsa2dsada/comment/dsadsa1
http://www.facebook.com/dsa2dsada/comment/dsadsa2
http://www.facebook.com/dsa2dsada/post/dsadsa3
http://www.facebook.com/dsa2dsada/comment/dsadsa4
http://www.facebook.com/dsa2dsada/post/dsadsa5

When i put the word comment on the list filter it will only add items that have "comment".

What if i want to remove the items with "comment" from the list?

try

$list remove

Link to post
Share on other sites

Can you add a function to show how many text match to the other text?

For example

Text1:

Ubot Studio Forum

Text2:

Ubot2 Studio2 Forum

 

It will show how many text matched from the other text.

???

Link to post
Share on other sites

What do you mean?

I think you already have the function for counting the similar words.

What i am suggesting is counting similar characters on the text.

$char count

Link to post
Share on other sites

Yes but it's for counting one text.

What i am suggesting is comparing two text and count the character similarities

data not found.

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

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 + $pad right >> $string pad
  • $pad string : Added ability support char and word

Merge command & Rename command

  • $create table string from table >> $string from table
  • $string from table : added ability "All cell" or only "Row" index or only "Col" index

string encrypt/decrypt

  • rename some option "Encode" to "Encrypt"
  • add option  "M2 Encrypt", "M2 Decrypt","M3 Encrypt", "M3 Decrypt", "Tea Encrypt", "Tea Decrypt","XTea Encrypt", "XTea Decrypt"

$random list items:

  • change range to -1
  • add option "Return Index"

Rename command

  • $list sum ==> $list calculator
  • $list calculator: add option & ability "Sum", "Min", "Max", "Average"

Add new option

  • $char count: add option "Count Space"

Add new command

  • $list reverse: list reverse
  • $list concat: list concat
  • $list merge: list merge
  • $is odd: check number is odd
  • $string fuzzy: string fuzzy
  • $string compare: compare 2 string
  • list to csv: Reduce workflow list >> add list to table >> save to csv

Add new sample file

  • $list reverse
  • $list concat
  • $list merge
  • $is odd
  • $string fuzzy:
  • $string compare
  • list to csv
  • $string from table
  • $pad string
  • $list calculator

 

I need to sleep. good night

  • Like 2
Link to post
Share on other sites

Can this plugin do string split? For example, lets say I have:

 

First Name:Last Name:Age:Sex

 

Is there a way that I could split them all off of one another and have them stored into their own variables or something?

Link to post
Share on other sites

Can this plugin do string split? For example, lets say I have:

 

First Name:Last Name:Age:Sex

 

Is there a way that I could split them all off of one another and have them stored into their own variables or something?

yes. this plugin have split command.

Link to post
Share on other sites

do you have a command or function on the plugin to separate strings by character?

For example:

abcdefg

I want to add each letters to a list like

a

b

c

d

e

f

g

 

Can it do this ^^^^^^^?

 

Also, is there instruction video available to explain how to perform each of this plugins features?

Link to post
Share on other sites

do you have a command or function on the plugin to separate strings by character?

For example:

abcdefg

I want to add each letters to a list like

a

b

c

d

e

f

g

alert($find regular expression("abcdefg","[\\w]"))

Can it do this ^^^^^^^?

 

Also, is there instruction video available to explain how to perform each of this plugins features?

http://network.ubotstudio.com/forum/index.php?/topic/17168-sell-plugin-advanced-data-text-file/

 

No video's by all Because many commands

Currently at 139 commands

But the sample files

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

×
×
  • Create New...