R-gsub不替换文本

时间:2017-07-16 09:21:24

标签: r gsub

我担心这是我第一次去R并且抓我的熊。

我正试图从网站上删除价格数据,而且似乎无法清除只留下数字的非必要字符。

任何有意义的建议!

<bean id="itemWriter" class="org.spr...FlatFileItemWriter"> <property name="resource" ref="outputResource" /> <property name="lineAggregator" ref="lineAggregator"/> <property name="headerCallback" ref="headerCallback" /> <property name="footerCallback" ref="footerCallback" /> </bean>

1 个答案:

答案 0 :(得分:0)

  

编辑:根据评论,修改代码。问题可能在于   字符串的编码。

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.42;
    border-radius: 15px;
}

.btn-round-lg {
    border-radius: 22.5px;
}

.btn-round {
    border-radius: 17px;
    margin: 5px 0 5px 0;
}

.btn-round-sm {
    border-radius: 15px;
}

.btn-round-xs {
    border-radius: 11px;
    padding-left: 10px;
    padding-right: 10px;
}

.day {
    width: 14%;
    min-height: 180px;
    padding-bottom: 50px;
    float: left;
    position: relative;
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray;
    border-left: 1px solid lightgray;
    padding: 5px 5px 50px 5px;
}

.eventleft {
    float: left;
}
.eventright {
    float: right;
}

.weekDay {
    background: lightyellow;
}

.weekEnd {
    background: lightgreen;
}

.event {
    padding: 3px 3px 3px 3px;
}

.dayTitle {
    width: 100%;
    border-bottom: 1px solid lightgray;
    padding: 3px 3px 3px 3px;
}

.DailyLoanInterestShow {
    color: gray;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 3px 6px 6px 3px;
}

.rowExpand {
    height: 100%;
}

@media (max-width: 1000px) {
    .day {
        width: 50%;
        border-bottom: 1px solid lightgray;
        border-top: 1px solid lightgray;
        border-left: 1px solid lightgray;
        border-right: 1px solid lightgray;
    }
}

@media (max-width: 600px) {
    .day {
        width: 90%;
        margin-left: 10px;
        border-bottom: 1px solid lightgray;
        border-top: 1px solid lightgray;
        border-left: 1px solid lightgray;
        border-right: 1px solid lightgray;
    }
}

希望这有帮助!