Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [Help] Checking a textbox for a word [solved]

[Help] Checking a textbox for a word [solved]

Posts 1–4 of 4 · Page 1 of 1
T0
T0P-CENT
[Help] Checking a textbox for a word [solved]
how can i check if textbox contains f.e. "$" more than one time
i already tried
Code:
Dim S As String = "$"
For Each S In TextBox1.Text
Msgbox("..")
Next
#1 · 15y ago
LY
Lyoto Machida
Here:

Code:
Dim WordCount As Integer = 0
        For i = 1 To TextBox1.Text.Length
            If Mid(TextBox1.Text, i, 1) = "$" Then
                WordCount += 1
            End If
        Next
        MsgBox(WordCount)
#2 · 15y ago
T0
T0P-CENT
Quote Originally Posted by -Away View Post
Here:

Code:
Dim WordCount As Integer = 0
        For i = 1 To TextBox1.Text.Length
            If Mid(TextBox1.Text, i, 1) = "$" Then
                WordCount += 1
            End If
        Next
        MsgBox(WordCount)
solved thanks
going to check mid function moar
#3 · 15y ago
Jason
Jason


[highlight=vb.net]
Private Function getWordCount(ByVal searchStr as string, byval targetstring as string) as integer
Return System.Text.RegularExpressions.Regex.Matches(targe tstring, System.Text.RegularExpressions.Regex.Escape(search Str)).Count
End Function
[/highlight]

Gotta love RegEx.
#4 · 15y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Tags for this Thread

None