Posted by Albert Gareev on Feb 25, 2010
Parent page: Service Functions – String (QTP, VBScript)
Question
The question was asked here.
Hi Albert!
Can you email me a QTP function that wraps line of text without breaking words?
Thank you!
Answer
Proper text alignment is important. The whole layout of CSS block or HTML table could be broken if a text line won’t fit.
The function below performs wrapping of [...] ...
Posted by Albert Gareev on Feb 22, 2010
Parent page: Service Functions – String (QTP, VBScript)
Question
The question was asked here.
What QTP function i can use to trim inside string? For e.g. “text text text text” – i want only 1 space between.
Answer
I believe the sample string provided in the question originally contained multiple space characters inside but was already “trimmed” by HTML parser. [...] ...
Posted by Albert Gareev on Dec 09, 2009
Parent page: Service Functions – System (QTP, VBScript)
Description
If you need to generate text file with values you don’t know ahead you may do it dynamically, by utilizing the function below. Make sure you designed template first.
The current logic is oriented to executable text files generation, like Dexterity Macro or OS Shell batch files. Code lines are data-driven, if data not [...] ...
Posted by Albert Gareev on Dec 03, 2009
Root page: Service Functions – XML (QTP, VBScript)
Parent page: XSL introduction and references
Related post: Text File compare in “WDIFF” style (QTP, VBScript, XML, XSL) – Instructions and XSL script
Sample task
After line by line (and word by word) text file comparison has been performed, XML log was produced.
Review the log, identify and report found issues.
Sample ...
Posted by Albert Gareev on Oct 01, 2009
In the code examples I present I often refer to routine functions.
In my framework I have specialized libraries to call from. In my blog I maintain the similar structure.
Matching string with a pattern (Regular Expression, RegEx)
Public Function Regex_Test(ByVal strSrc, ByVal strRegEx)
Dim objRegEx
Dim boolRC, intRC
Set objRegEx = New RegExp
objRegEx.Pattern = strRegEx
On Error Resume Next
boolRC = ...
Posted by Albert Gareev on May 27, 2009
Original date: N/A
The post has been mostly recompiled from the comments.
Displaying Text File comparison results in an embedded report.
Refer to Text File Compare functions used to see how XML file is generated.
Sample requirements to show comparison results stored in XML as a web-page (HTML).
1. Show file stats saved in xml file.
2. Show original text line by [...] ...
Posted by Albert Gareev on May 26, 2009
Original date: 26 Jan 2009, 1:30pm
Line by line, and word by word comparison isn’t a big problem. But how conveniently show the results?
With WinRunner comparison and reporting has been implemented utilizing WDIFF program.
With QTP we can do the same using XML-XSL technology.
The function below performs comparison of 2 text files generating output in XML keeping [...] ...