Skip to main content
1 vote
1 answer
151 views

We have an English-Latin dictionary in our hands, that is, a list of words in English and their translations into Latin (there may be several translations) in the form of a file with the following ...
Maksim Barabanov's user avatar
0 votes
1 answer
104 views

I am learning rust macros. In the part on repetition, the following macro is used to demonstrate how repetitions work: macro_rules! repeat_two { ($($i:ident)*, $($i2:ident)*) => { $( ...
kesarling's user avatar
  • 2,318
-2 votes
2 answers
234 views

enter image description here Hello everyone, you will find in my image a Power Automate flow with the creation of a CSV from a Power BI dataset. Everything works very well except for one small detail. ...
user25891342's user avatar
0 votes
1 answer
80 views

I would like to read in a csv-file. Sadly this is created by a buggy software: My header row contains multiple separators ";" and ",". Which wouldn't be a problem if my dataset ...
Swawa's user avatar
  • 273
0 votes
0 answers
119 views

I can easily do this for floats using an f-string like this: x = float(123456789.123456) print(f"{x:_f}") prints 123_456_789.123456 exactly as expected. But if try the same technique for a ...
HaroldFinch's user avatar
0 votes
0 answers
45 views

I want to import a csv file with TAB column separator and CRLF (2 chars) as row separator. I use: .mode ascii .separator "\t" "\r\n" to which sqlite3 complains: Error: multi-...
Kris Van Bruwaene's user avatar
0 votes
1 answer
71 views

In the attached images, you can observe that I am explicitly using both InvariantCulture and a new instance of CultureInfo("en-US") when converting a Double to a String: value.ToString(...
Xavier Junqué's user avatar
3 votes
3 answers
163 views

Here is how one column in my data looks like: dat <- data.frame( A = c("M24656811 M24677722 GREEN,SMITH34/M/B", "M24654999 DOE,JANE V37/F/W", "M24333107 DOE,JOHN24/M/B"...
Lihui Zhang's user avatar
0 votes
0 answers
12 views

enter image description here image from a part of my spread sheet. how can I divide rows number 35-37 to a single row like 34. In the image for example names and numbers are in wrapped text format but ...
Nader Fallah's user avatar
0 votes
1 answer
89 views

I have a .csv file that I’m having trouble processing because the numbers use commas for decimals, which causes issues when reading the file in R. Excel interprets commas for decimals, while R uses ...
user778's user avatar
  • 59
2 votes
1 answer
115 views

If I have a range I can print it with the fmt library, in this way: https://fmt.dev/8.1.0/api.html#ranges-api #include <fmt/ranges.h> std::vector<int> t = {1, 2, 3}; // Prints "[1, 2,...
alfC's user avatar
  • 16.8k
0 votes
1 answer
37 views

I have XML with product's parameters like colors. <parameter name='color'> <value>black</value> <value>white</value> </parameter> I want to output a value ...
Piotr Orczyk's user avatar
2 votes
1 answer
74 views

I'm using form prefix to render the same django form twice in the same template and avoid identical fields id's. When you do so, the separator between the prefix and the field name is '-', I would ...
Nico44044's user avatar
  • 399
0 votes
1 answer
62 views

I have a dataset where each row is a character string like this (and this is all under one column): Jacoby BrissettO 206.5-115U 206.5-115Joe BurrowO 243.5-115U 243.5-155. I want to split this into ...
mankiwsmom's user avatar
1 vote
0 answers
165 views

I'm trying to output a list of custom taxonomies on Wordpress where the final separator is an &. I have three potential taxonomies a post could be in: Category 1, Category 2, and Category 3. Some ...
Scott Goodacre's user avatar

15 30 50 per page
1
2 3 4 5
66