From: JB on
Or even without a loop ?<img src="http://forums.ni.com/attachments/ni/170/321330/1/Example_VI_BD4.png"> Extract from the help for the Search and Replace String function :Right-click the Search and Replace String function and select Regular Expression from the shortcut menu to configure the function for advanced regular expression searches and partial match substitution in the replacement string.Extract from the for the advanced search options :[a-zA-Z0-9] matches any lowercase or uppercase letter or any digit. You also can use a character class to match any character not in a given set by adding a caret (^) to the beginning of the class. For example [^a-zA-Z0-9] matches any character that is not a lowercase or uppercase letter and also not a digit.Message Edit� par JB le 05-06-2008 01:49 PM


Example_VI_BD4.png:
http://forums.ni.com/attachments/ni/170/321330/1/Example_VI_BD4.png
From: tst on
Yep, that looks better. I happily never had the need to use&nbsp;regexes too much, so the less I know about them the better. :smileywink:
From: rashid19672008 on
Yup this worked for me! Thanks a lot, friend!