Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey
-1 votes
1 answer
121 views

I am trying create child scripts from one parent script where a few parameters are modified (48 child scripts, so automation would be preferred). My intention for this is to run different Modelica ...
Luis Enriquez-Contreras's user avatar
0 votes
1 answer
392 views

Somewhere in my environment, there's a large file that contains (among other stuff) many System Verilog structs of 64 bits, e.g.: typedef struct packed {  logic [63:63]  my_field_1;  logic [62:...
Benny80's user avatar
  • 15
0 votes
1 answer
80 views

I am creating a Chrome extension (code here) and am having trouble with the "keydown" event. I want to use it to capture a 'backspace' before it happens, in order to switch the text the user ...
StckSmsh's user avatar
0 votes
1 answer
112 views

Based on a String input, I need to output the meaning of the String based on different criteria's. The String length will always be 8 Characters and the first four and last two characters mean ...
ukiyo1738's user avatar
3 votes
1 answer
228 views

I have a file which has a section like the following, only one key/value pair is provided but there could be N number: "Section Name" { "Key" "{\"...
Eamonn's user avatar
  • 710
1 vote
1 answer
56 views

So I'm trying to join text separated by commas in one column, and join it with the text in corresponding position in the opposing column. English isn't my first language but I think that the photo ...
Henry's user avatar
  • 11
0 votes
0 answers
121 views

I had a text file with multiple lines. Our software is not picking up files with characters more or less than 152 characters per line. So, I need a PowerShell script to limit the number of characters ...
SV12 VS's user avatar
  • 27
0 votes
2 answers
64 views

I have been reading around here for several days, and I have found many shared scripts but it doesn't appear that those shared here can help me with my request, I have also looked online and I can't ...
James Thomas's user avatar
0 votes
1 answer
170 views

I have used python to print a string "aaaaabbbbbccccc" into 5 separate columns of characters. I have not used an array to do this. a a a a a b b b b b c c c c c Now I want to print each ...
Auras's user avatar
  • 13
1 vote
1 answer
90 views

I have an xml file listing several games and their metadata, like so: <?xml version="1.0"?> <gameList> <game> <path>./Besiege.desktop</path> ...
Calibre's user avatar
  • 13
0 votes
1 answer
50 views

Example of my dataset "doc name with spaces.csv" (with anonymized data) file that has multiple lines. Length of file will be variable from day to day as part of an export. Patient Full Name ...
Alex Barber's user avatar
0 votes
2 answers
97 views

I have a long list of JSON data, with repeats of contents similar to followings. Due to the original JSON file is too long, I will just shared the hyperlinks here. This is a result generated from a ...
austin7923's user avatar
0 votes
2 answers
79 views

to add certain symbol after every three got splited lines Something like that?? - print('@'.join(st_text[i:i + 3] for i in range(0, len(st_tex), 3)))
gfffh's user avatar
  • 3
0 votes
3 answers
990 views

I'm preparing for my interview, faced the problem with the task. The case is that we're having a string: test12pop90java989python I need to return new string where words will be reversed and numbers ...
Kermi's user avatar
  • 247
2 votes
4 answers
149 views

I use following awk script to do so, for line in $1 do grep -F ".js" $1 | awk '{print $7}' | sort -u done the out put is almost there: /blog/wp-includes/js/swfobject.js?ver=2.2 /fla/...
Arturo Rubio's user avatar

15 30 50 per page
1
2 3 4 5
17