ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   substring matching functions (need a hand please) (https://www.excelbanter.com/excel-programming/351915-substring-matching-functions-need-hand-please.html)

Ciccio_Drink

substring matching functions (need a hand please)
 

Hi all, I am a very new Excel macro functions user.

I was looking for a function able to check if a substring is or no
present in another string.

i.e. if the string "--------AB-------" contains the string "AB"

sorry for the newbie question and thx al

--
Ciccio_Drin
-----------------------------------------------------------------------
Ciccio_Drink's Profile: http://www.excelforum.com/member.php...fo&userid=3100
View this thread: http://www.excelforum.com/showthread.php?threadid=50671


Norman Jones

substring matching functions (need a hand please)
 
Hi Ciccio_Drink,

Look at the InStr function in VBA help:

'=============
Public Sub Tester001()
Dim sStr As String

sStr = " A horse, my Kingdom for a horse"

If InStr(1, sStr, "xhorse", vbTextCompare) 0 Then _
MsgBox "substring found!"

End Sub
'<<=============


---
Regards,
Norman



"Ciccio_Drink"
wrote in message
news:Ciccio_Drink.22hxmz_1138706101.8006@excelforu m-nospam.com...

Hi all, I am a very new Excel macro functions user.

I was looking for a function able to check if a substring is or not
present in another string.

i.e. if the string "--------AB-------" contains the string "AB"

sorry for the newbie question and thx all


--
Ciccio_Drink
------------------------------------------------------------------------
Ciccio_Drink's Profile:
http://www.excelforum.com/member.php...o&userid=31003
View this thread: http://www.excelforum.com/showthread...hreadid=506710




Norman Jones

substring matching functions (need a hand please)
 
Hi Ciccio_Drink,

To see the message, replace "xhorse" with "horse"

---
Regards,
Norman



"Norman Jones" wrote in message
...
Hi Ciccio_Drink,

Look at the InStr function in VBA help:

'=============
Public Sub Tester001()
Dim sStr As String

sStr = " A horse, my Kingdom for a horse"

If InStr(1, sStr, "xhorse", vbTextCompare) 0 Then _
MsgBox "substring found!"

End Sub
'<<=============


---
Regards,
Norman




Ciccio_Drink[_2_]

substring matching functions (need a hand please)
 

I just found the answer :rolleyes:

function InStr ( "String1", "String2" )


--
Ciccio_Drink
------------------------------------------------------------------------
Ciccio_Drink's Profile: http://www.excelforum.com/member.php...o&userid=31003
View this thread: http://www.excelforum.com/showthread...hreadid=506710


Ciccio_Drink[_3_]

substring matching functions (need a hand please)
 

thank you very much Norman,

Cicci

--
Ciccio_Drin
-----------------------------------------------------------------------
Ciccio_Drink's Profile: http://www.excelforum.com/member.php...fo&userid=3100
View this thread: http://www.excelforum.com/showthread.php?threadid=50671



All times are GMT +1. The time now is 12:36 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com