Package burp.api.montoya.utilities
Interface StringUtils
-
public interface StringUtilsThis interface gives you access to String manipulation features.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringconvertAsciiToHexString(java.lang.String data)Convert a string to the hex values of its ASCII characters.java.lang.StringconvertHexStringToAscii(java.lang.String data)Convert a string of hex values to a string of ASCII characters.
-
-
-
Method Detail
-
convertAsciiToHexString
java.lang.String convertAsciiToHexString(java.lang.String data)
Convert a string to the hex values of its ASCII characters. Each character will be converted to a two digit hex value.- Parameters:
data- The ASCII data to convert.- Returns:
- The string of hex values.
-
convertHexStringToAscii
java.lang.String convertHexStringToAscii(java.lang.String data)
Convert a string of hex values to a string of ASCII characters. Each pair of hex digits will be converted to a single ASCII character.- Parameters:
data- The string of hex values to convert.- Returns:
- The string of ASCII characters.
-
-