એરે સાધનો

ટેક્સ્ટ સૂચિને JS, Python, PHP, Perl, SQL IN અને JSON એરેમાં કન્વર્ટ કરો.

નિઃશુલ્ક ઑનલાઇન એરે અને સૂચિ કન્વર્ટર

તમારા પ્રોજેક્ટની જરૂરિયાતો એરે સિન્ટેક્સમાં સાદા-ટેક્સ્ટ સૂચિને ફેરવો. Dokall JavaScript, Python, PHP, Perl, SQL IN કલમો અને JSON એરેને સપોર્ટ કરે છે - જ્યારે તમારી પાસે સ્પ્રેડશીટમાંથી કૉલમ ડેટા હોય અને કોડ-રેડી આઉટપુટની જરૂર હોય ત્યારે સંપૂર્ણ.

લાઇન દીઠ એક આઇટમ પેસ્ટ કરો અને ફોર્મેટ કરેલ પરિણામની નકલ કરો. કોઈ મેન્યુઅલ અવતરણ અથવા કૌંસ-રેપિંગ આવશ્યક નથી.

Frequently Asked Questions

What output formats are supported?
Dokall converts a line-separated list into JavaScript arrays, Python lists, PHP arrays, Perl arrays, SQL IN clauses, and JSON arrays. Each format handles quoting and escaping according to its language rules.
How does the SQL IN clause format work?
Each line becomes a quoted value inside parentheses: ('value1', 'value2', 'value3'). String values are single-quoted and internal quotes are escaped. Use this for WHERE column IN (...) queries when you have a list of IDs or names from a spreadsheet.
Are special characters escaped?
Yes. Quotes, backslashes, and other special characters in your input are escaped according to the target format. A line containing it's becomes "it's" in JavaScript and 'it\'s' in SQL.
Can I convert from an array back to lines?
This tool converts lines to arrays, not the reverse. To extract values from an existing array, use the JSON formatter to pretty-print it, then manually copy values, or use your language's join method programmatically.
One item per line - what about commas in values?
Each line is treated as one array element regardless of commas within the line. If your data uses commas as separators instead of newlines, paste into a spreadsheet first, then copy the column to get one value per line.