Top "Converter" questions

Converters can change data from one type to another, translate data based on cultural information, or modify other aspects of presentation.

Calendar date to yyyy-MM-dd format in java

How to convert calendar date to yyyy-MM-dd format. Calendar cal = Calendar.getInstance(); cal.add(Calendar.DATE, 1); Date date = cal.getTime(); …

java date calendar converter
Convert Int to String in Swift

I'm trying to work out how to cast an Int into a String in Swift. I figure out a workaround, …

string casting int converter swift
How to convert a String into an ArrayList?

In my String, I can have an arbitrary number of words which are comma separated. I wanted each word added …

java string arraylist converter
Convert xlsx to csv in Linux with command line

I'm looking for a way to convert xlsx files to csv files on Linux. I do not want to use …

linux excel csv converter xlsx
How to convert string to long

how do you convert a string into a long. for int you int i = 3423; String str; str = str.valueOf(i); …

java android string converter long-integer
Converting XML to JSON using Python?

I've seen a fair share of ungainly XML->JSON code on the web, and having interacted with Stack's users …

python json xml converter
Java: How to convert String[] to List or Set

How to convert String[] (Array) to Collection, like ArrayList or HashSet?

java arrays collections converter
Concatenating elements in an array to a string

I'm confused a bit. I couldn't find the answer anywhere ;( I've got an String array: String[] arr = ["1", "2", "3"]; then I convert …

java arrays string converter
ffmpeg - Converting MOV files to MP4

I have just installed ffmpeg and I am trying to encode all my uploaded videos to .mp4 file. Most of …

ffmpeg converter
How to convert datetime to integer in python

how can i convert YYYY-MM-DD hh:mm:ss format to integer in python? for example 2014-02-12 20:51:14 -> to …

python datetime integer converter