Posts by RebeccaMM • 91 points
3 posts
-
9
votes6
answers300
viewsQ: How do I transform an array that is in a string for javascript array?
I have a string representing an array as follows: var = "['aaaaa', 'bbbbb', 'ccccc', 'ddddd']"; Wish I could transform this array that is in the string into an Array to perform manipulations. var =…
-
0
votes2
answers2044
viewsQ: How to get a part of a file name in shell script?
I have a file that has the format nome1-nome2-0.0.0.0.war, and through the shell wanted to take the version (0.0.0.0) and save it in a variable and then use it to create a directory. Obs.: The…
shell-scriptasked RebeccaMM 91 -
0
votes1
answer43
viewsQ: How to limit a JDBC connection to only do "select" queries?
I wish my JDBC connection didn’t make queries that can make changes to tables (Insert, delete, update, drop). There’s some way this can be done?