|
|||||||
split по табуляции
Время создания: 07.09.2017 13:06
Текстовые метки: code
Раздел: Java - Work with text - Парсинг
Запись: xintrea/mytetra_db_mcold/master/base/1504778795yxsf6q35ct/text.html на raw.githubusercontent.com
|
|||||||
|
|||||||
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package inout; /** * * @author mcold */ import java.util.Scanner; /* Выводим квадрат числа */ public class InOut { public static void main(String[] args) { String s = "Something \telse \thappend"; String[] parts = s.split("([\t]+)"); System.out.println(parts.length); for (int i=0; i<parts.length; i++){ System.out.println(parts[i]); } //System.out.println(parts);
} } |
|||||||
Так же в этом разделе:
|
|||||||
|
|||||||
|