Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

lekukan tidak konsisten dengan Python setelah split

Itu seharusnya berhasil:

import re #Regex may be the easiest way to split that line

with open(infile) as in_f, open(outfile,'w') as out_f:
    f = (i for i in in_f if i.rstrip()) #iterate over non empty lines
    for line in f:
        _, k = line.split('\t', 1)
        x = re.findall(r'^1..100\t([+-])chr(\d+):(\d+)\.\.(\d+).+$',k)
        if not x:
            continue
        out_f.write(' '.join(x[0]) + '\n')


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Konversi otomatis kueri SQL ke Permintaan ElasticSearch

  2. 'Fungsi VALUES' MySQL tidak digunakan lagi

  3. Masalah kata sandi MySQL (mac OS X Lion)

  4. Pencarian Teks Lengkap dengan InnoDB

  5. hapus baris terakhir dalam tabel menggunakan kueri sql?