作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个采购订单号码列表。它们看起来像(4010059877-TUR36036133 或 TUR6039716## 4010073239)。我需要能够将单元格缩小到仅 PO 编号,即 4010059877 编号。关于我要排除的部分的唯一一致部分是“TUR########”。
我研究过排除所有非数字字符的代码,但有些单元格有这些“TUR #'s”。我进行了查找并用通配符“*”替换。我也在网上搜索过,没有看到类似的东西。
查找并替换尝试的代码
Sub Replace()
Columns("AJ").Replace What:="TUR*", _
Replacement:="", _
LookAt:=xlPart, _
SearchOrder:=xlByRows, _
MatchCase:=False, _
SearchFormat:=False, _
ReplaceFormat:=False
End Sub
Dim finRow As String
finRow = Sheets("Data").Range("A20000").End(xlUp).Row
Set myRange = Sheets("Data").Range("AK2:AK" & finRow)
For Each myCell In myRange
LastString = ""
For I = 1 To Len(myCell.Value)
mT = Mid(myCell.Value, I, 1)
If mT Like "[0-9]" Then
tString = mT
Else
tString = ""
End If
LastString = LastString & tString
Next I
myCell.Value = LastString
Next
最佳答案
您可以使用 InStr() 函数,然后使用它来支持 Left,例如:
loc = instr(mycell,"TUR")
val = left(mycell.value,loc-1)
loc = instr(mycell,"TUR")
if loc = 1 then
val = ""
else
val = left(mycell.value,loc-1)
end if
Dim val as long 'assumes you will only have a number in the end
val = right(left(mycell.value,12),11)
mycell.value = val
关于excel - 只知道一定数量的字符时替换一串文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55458335/
我正在尝试开发右边框/Angular 具有特定 Angular (30°) 的表格。我见过一些类似的解决方案,但它们都无法在一定程度上发挥作用。如果我想从 30° 改变到 20°,我不想花太多力气。
我是一名优秀的程序员,十分优秀!