Eu li a documentação do Emacs, align-regexp
mas ainda tenho dificuldade em entender como ele funciona. O que eu estou falando é sua forma prefixada C-uM-xalign-regexp
, não a forma simples M-xalign-regexp
. Aqui estão as minhas perguntas:
- O primeiro parâmetro (o regex) precisa corresponder a toda a linha da string? E se a regex corresponder apenas a uma parte da sequência?
- O que fornecer ao segundo parâmetro (grupo de parênteses a modificar (justifique se negativo))? Pelo que entendi aqui, preciso fornecer um número de grupo capturado (contagem de 1), certo? "Justificar se negativo" significa que, se eu quiser o grupo 3 alinhado à direita, fornecerei
-3
como entrada? - O que significa o terceiro parâmetro "quantidade de espaçamento (ou coluna, se negativo)"? Eu totalmente não entendo o que esse parâmetro faz.
Eu colecionei alguns exemplos de texto para praticar. Se alguém puder usar o texto abaixo como exemplos, isso será muito útil.
A partir de
class CreateStudents < ActiveRecord::Migration
def change
create_table :students, :comment => "学生信息表" do |t|
t.string :political_status, :comment => "政治面貌"
t.string :education_level, :comment => "培养层次"
t.string :enroll_method, :comment => "入学方式"
t.date :enrolled_at, :comment => "入学时间"
t.string :charge_type, :comment => "收费类别"
t.string :enrolled_year, :comment => "学籍年度"
t.string :enrolled_place, :comment => "生源所在地"
t.string :bank_card_number, :comment => "银行卡号"
t.string :bank_account_number, :comment => "银行账号"
t.boolean :is_active_duty, :default => false, :comment => "是否现役军人"
t.boolean :is_equivalent_degree, :default => false, :comment => "是否同等学历"
t.boolean :is_on_record, :default => true, :comment => "是否在籍"
t.boolean :is_at_school, :default => true, :comment => "是否在校"
t.timestamps
end
end
end
Para
class CreateStudents < ActiveRecord::Migration
def change
create_table :students, :comment => "学生信息表" do |t|
t.string :political_status, :comment => "政治面貌"
t.string :education_level, :comment => "培养层次"
t.string :enroll_method, :comment => "入学方式"
t.date :enrolled_at, :comment => "入学时间"
t.string :charge_type, :comment => "收费类别"
t.string :enrolled_year, :comment => "学籍年度"
t.string :enrolled_place, :comment => "生源所在地"
t.string :bank_card_number, :comment => "银行卡号"
t.string :bank_account_number, :comment => "银行账号"
t.boolean :is_active_duty, :default => false, :comment => "是否现役军人"
t.boolean :is_equivalent_degree, :default => false, :comment => "是否同等学历"
t.boolean :is_on_record, :default => true, :comment => "是否在籍"
t.boolean :is_at_school, :default => true, :comment => "是否在校"
t.timestamps
end
end
end
A partir de
my @primes = (
1,2,3,5,7,
11,13,17,19,23,
29,31,37,41,43,
);
Para
my @primes = (
1, 2, 3, 5, 7,
11, 13, 17, 19, 23,
29, 31, 37, 41, 43,
);
fonte