Questions tagged as 'formato'

2
answers

Is it possible that the method of moment format does not work well?

I find myself with the following, I have to format some dates and I always used the moments. Now I have this dilemma: var date2 = new Date(year, 6, 0); var dateEnd = formatShortDate(date2.toString()); and the method formatShortDate ,...
asked by 03.04.2017 / 11:10
2
answers

Date format when importing from Excel

I am learning to work with DataFrames in Pandas. In my case, the original format in the Excel sheet is "dd-mm-YY". When importing to a DataFrame with pandas, using the statement df = pd.read_excel(file, parse_dates=['Fecha'], dayfirst =...
asked by 24.09.2017 / 23:08
1
answer

problems with an external disk that is not read

I have an extreme 1TB disk but Windows only sees it as a disk without lyrics .. and it does not let me format the disk Thinking that it was just a problem with the windows files I tried it on an ubuntu and basically says that you can not m...
asked by 31.07.2018 / 08:28
2
answers

Format of dates in Java

I have a problem with the format of the date in the java language, I want to format it in DD / MM / YYYY but it does not allow me, I format it as MM / DD / YYYY I have tried with the    new SimpleDateFormat ("dd / MM / yyyy"). format (get...
asked by 03.05.2017 / 18:11
4
answers

PHP Format in Visual Studio Code

Currently I have several php files that are messy, I mean it's something like this: <thead> <tr style="background:#339999;color:white;"> <th>ID</th> <th>APELLIDO PATERNO&l...
asked by 09.05.2018 / 19:09
2
answers

Format a string or number using Javascript

I have an application that consumes API . I have no control over that API , I can only consume it. The API returns in JSON format a name, latitude and longitude. The problem is that due to a problem, the latitude and...
asked by 13.02.2017 / 12:24
2
answers

Format Django numeric fields in template

I receive in my templates some numerical data from a view, for example a salary for this practical case 100,000: <td>{{ role.salary }}</td> But in the tenplate he shows it to me with x decimals:    100000,33333333 How can...
asked by 06.02.2018 / 20:54
1
answer

Format Textbox in C # for WPF project

I have created a project in WPF in which in some textbox I have to enter hours in the 00:00:00 format, I would like the texbox to have the predefined format.     
asked by 02.01.2019 / 01:58
1
answer

Datetime-Local to Y-m-d format H: i: sP '?

I'm working on angular and I'm saving the datetime of two datetime-local with a ng-model <input type="datetime-local" ng-model="column_Data.date_Start" placeholder="yyyy-MM-ddTHH:mm:ss" min="2014-01-01T00:00:00"> and then I am sending...
asked by 02.06.2017 / 17:31
1
answer

TypeError: 'int' object has no attribute '__getitem__'

I have a data frame with different identification numbers and I am trying to format it in two sections, if it has more than 10 digits the format is: 123.456.789-0, if it is different to 10 digits (less or more) the format is : 123,456,789 / 123,...
asked by 20.10.2018 / 01:25