我使用Python中的正则表达式来提取“和”单词。意思是用和和分隔开的单词。
例如
银行和金融
损益
迄今所作的努力:
import re
read = open("sample.txt", "r")
regex = re.compile('(?:\S+\s)?\S*and\S*(?:\s\S+)?')
f=open('write.txt','w')
for line in read:
words = regex.findall(line)
for word in words:
我在一个多态关系的模型上从一个非常基本的范围得到了一些奇怪的结果。以下是这些关系的简要总结和细节。
模型/金融学
class Financial < ActiveRecord::Base
belongs_to :financiable, :polymorphic => true
#ltm is a boolean field in the model
scope :ltm, -> { where(ltm: true).last }
然后是一个基本的公司模型,它有很多金融机构
型号/Firm.rb
class Firm < ActiveRecord: